Lines Matching +full:mbox +full:- +full:name
1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
60 strcpy(header.name, "Name"); in display_pending_firmware()
77 mbox_store_word(uint8_t *mbox, uint32_t val) in mbox_store_word() argument
80 mbox[0] = val & 0xff; in mbox_store_word()
81 mbox[1] = val >> 8 & 0xff; in mbox_store_word()
82 mbox[2] = val >> 16 & 0xff; in mbox_store_word()
83 mbox[3] = val >> 24; in mbox_store_word()
95 uint8_t mbox[4], status; in flash_adapter() local
110 fd = -1; in flash_adapter()
131 mbox_store_word(mbox, sb.st_size); in flash_adapter()
132 if (mfi_dcmd_command(fd, MFI_DCMD_FLASH_FW_OPEN, NULL, 0, mbox, 4, in flash_adapter()
165 mbox_store_word(mbox, offset); in flash_adapter()
167 mbox, 4, &status) < 0) { in flash_adapter()
180 sb.st_size -= nread; in flash_adapter()