Blackfin: update lockbox api according to latest documentation

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
Mike Frysinger 2008-08-07 13:21:48 -04:00
parent 2decc2a8d1
commit c06f2b1302

View File

@ -15,14 +15,14 @@ typedef struct SESR_args {
unsigned short usIRQMask; /* interrupt mask */
unsigned long ulMessageSize; /* message length in bytes */
unsigned long ulSFEntryPoint; /* entry point of secure function */
unsigned long ulMessagePtr; /* pointer to the buffer containing */
/* the digital signature and message */
unsigned long ulMessagePtr; /* pointer to the buffer containing
the digital signature and message */
unsigned long ulReserved1; /* reserved */
unsigned long ulReserved2; /* reserved */
} tSESR_args;
/* Secure Entry Service Routine */
void (* const sesr)(void) = (void *)_BOOTROM_SESR;
static void (* const sesr)(void) = (void *)_BOOTROM_SESR;
#endif