mirror of https://gitee.com/openkylin/linux.git
scsi: aacraid: Make some symbols static
Fix the following sparse warnings: drivers/scsi/aacraid/linit.c:867:6: warning: symbol 'aac_tmf_callback' was not declared. Should it be static? drivers/scsi/aacraid/linit.c:1081:5: warning: symbol 'aac_eh_host_reset' was not declared. Should it be static? drivers/scsi/aacraid/commsup.c:2354:5: warning: symbol 'aac_send_safw_hostttime' was not declared. Should it be static? drivers/scsi/aacraid/commsup.c:2383:5: warning: symbol 'aac_send_hosttime' was not declared. Should it be static? Link: https://lore.kernel.org/r/1588240932-69020-1-git-send-email-zou_wei@huawei.com Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: Zou Wei <zou_wei@huawei.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
88bfdf565c
commit
297083f6e5
|
@ -2351,7 +2351,7 @@ static int aac_send_wellness_command(struct aac_dev *dev, char *wellness_str,
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
int aac_send_safw_hostttime(struct aac_dev *dev, struct timespec64 *now)
|
static int aac_send_safw_hostttime(struct aac_dev *dev, struct timespec64 *now)
|
||||||
{
|
{
|
||||||
struct tm cur_tm;
|
struct tm cur_tm;
|
||||||
char wellness_str[] = "<HW>TD\010\0\0\0\0\0\0\0\0\0DW\0\0ZZ";
|
char wellness_str[] = "<HW>TD\010\0\0\0\0\0\0\0\0\0DW\0\0ZZ";
|
||||||
|
@ -2380,7 +2380,7 @@ int aac_send_safw_hostttime(struct aac_dev *dev, struct timespec64 *now)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
int aac_send_hosttime(struct aac_dev *dev, struct timespec64 *now)
|
static int aac_send_hosttime(struct aac_dev *dev, struct timespec64 *now)
|
||||||
{
|
{
|
||||||
int ret = -ENOMEM;
|
int ret = -ENOMEM;
|
||||||
struct fib *fibptr;
|
struct fib *fibptr;
|
||||||
|
|
|
@ -864,7 +864,7 @@ static u8 aac_eh_tmf_hard_reset_fib(struct aac_hba_map_info *info,
|
||||||
return HBA_IU_TYPE_SATA_REQ;
|
return HBA_IU_TYPE_SATA_REQ;
|
||||||
}
|
}
|
||||||
|
|
||||||
void aac_tmf_callback(void *context, struct fib *fibptr)
|
static void aac_tmf_callback(void *context, struct fib *fibptr)
|
||||||
{
|
{
|
||||||
struct aac_hba_resp *err =
|
struct aac_hba_resp *err =
|
||||||
&((struct aac_native_hba *)fibptr->hw_fib_va)->resp.err;
|
&((struct aac_native_hba *)fibptr->hw_fib_va)->resp.err;
|
||||||
|
@ -1078,7 +1078,7 @@ static int aac_eh_bus_reset(struct scsi_cmnd* cmd)
|
||||||
* @scsi_cmd: SCSI command block causing the reset
|
* @scsi_cmd: SCSI command block causing the reset
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
int aac_eh_host_reset(struct scsi_cmnd *cmd)
|
static int aac_eh_host_reset(struct scsi_cmnd *cmd)
|
||||||
{
|
{
|
||||||
struct scsi_device * dev = cmd->device;
|
struct scsi_device * dev = cmd->device;
|
||||||
struct Scsi_Host * host = dev->host;
|
struct Scsi_Host * host = dev->host;
|
||||||
|
|
Loading…
Reference in New Issue