Message ID | 1617354522-17113-3-git-send-email-luojiaxing@huawei.com |
---|---|
State | Superseded |
Headers | show |
Series | [v1,1/2] scsi: pm8001: clean up for white space | expand |
On 4/2/21 2:08 AM, Luo Jiaxing wrote: > -static struct flash_command flash_command_table[] = > -{ > +static struct flash_command flash_command_table[] = { > {"set_nvmd", FLASH_CMD_SET_NVMD}, > {"update", FLASH_CMD_UPDATE}, > {"", FLASH_CMD_NONE} /* Last entry should be NULL. */ Can 'flash_command_table' be declared const? > -static struct error_fw flash_error_table[] = > -{ > +static struct error_fw flash_error_table[] = { > {"Failed to open fw image file", FAIL_OPEN_BIOS_FILE}, > {"image header mismatch", FLASH_UPDATE_HDR_ERR}, > {"image offset mismatch", FLASH_UPDATE_OFFSET_ERR}, Can 'flash_error_table' be declared const? Thanks, Bart.
On 2021/4/3 0:03, Bart Van Assche wrote: > On 4/2/21 2:08 AM, Luo Jiaxing wrote: >> -static struct flash_command flash_command_table[] = >> -{ >> +static struct flash_command flash_command_table[] = { >> {"set_nvmd", FLASH_CMD_SET_NVMD}, >> {"update", FLASH_CMD_UPDATE}, >> {"", FLASH_CMD_NONE} /* Last entry should be NULL. */ > Can 'flash_command_table' be declared const? Sure > >> -static struct error_fw flash_error_table[] = >> -{ >> +static struct error_fw flash_error_table[] = { >> {"Failed to open fw image file", FAIL_OPEN_BIOS_FILE}, >> {"image header mismatch", FLASH_UPDATE_HDR_ERR}, >> {"image offset mismatch", FLASH_UPDATE_OFFSET_ERR}, > Can 'flash_error_table' be declared const? Sure Thanks Jiaxing > > Thanks, > > Bart. > > . >
diff --git a/drivers/scsi/pm8001/pm8001_ctl.c b/drivers/scsi/pm8001/pm8001_ctl.c index ffb4387..8802fe4 100644 --- a/drivers/scsi/pm8001/pm8001_ctl.c +++ b/drivers/scsi/pm8001/pm8001_ctl.c @@ -647,8 +647,7 @@ struct flash_command { int code; }; -static struct flash_command flash_command_table[] = -{ +static struct flash_command flash_command_table[] = { {"set_nvmd", FLASH_CMD_SET_NVMD}, {"update", FLASH_CMD_UPDATE}, {"", FLASH_CMD_NONE} /* Last entry should be NULL. */ @@ -659,8 +658,7 @@ struct error_fw { int err_code; }; -static struct error_fw flash_error_table[] = -{ +static struct error_fw flash_error_table[] = { {"Failed to open fw image file", FAIL_OPEN_BIOS_FILE}, {"image header mismatch", FLASH_UPDATE_HDR_ERR}, {"image offset mismatch", FLASH_UPDATE_OFFSET_ERR},