blob: 30e86eae9b31af4c9a42a2b89e49955daa976081 [file] [log] [blame]
typedef struct {
unsigned char mbxCommand;
} MAILBOX_t;
void __writel(unsigned int);
void lpfc_sli_brdrestart(void)
{
volatile unsigned int word0;
MAILBOX_t *mb;
mb = (MAILBOX_t *) &word0;
mb->mbxCommand = 0x1A;
__writel((*(unsigned int *) mb));
}