scsi: bfa: bfa_fcpim.c: make two functions static
Fix the following sparse warning: drivers/scsi/bfa/bfa_fcpim.c:440:1: warning: symbol 'bfa_ioim_profile_comp' was not declared. Should it be static? drivers/scsi/bfa/bfa_fcpim.c:457:1: warning: symbol 'bfa_ioim_profile_start' was not declared. Should it be static? Link: https://lore.kernel.org/r/20200407032202.36789-4-yanaijie@huawei.com Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: Jason Yan <yanaijie@huawei.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
b9ddee1ee1
commit
84a2fd236d
|
@ -436,7 +436,7 @@ bfa_fcpim_port_iostats(struct bfa_s *bfa,
|
||||||
return BFA_STATUS_OK;
|
return BFA_STATUS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
static void
|
||||||
bfa_ioim_profile_comp(struct bfa_ioim_s *ioim)
|
bfa_ioim_profile_comp(struct bfa_ioim_s *ioim)
|
||||||
{
|
{
|
||||||
struct bfa_itnim_latency_s *io_lat =
|
struct bfa_itnim_latency_s *io_lat =
|
||||||
|
@ -453,7 +453,7 @@ bfa_ioim_profile_comp(struct bfa_ioim_s *ioim)
|
||||||
io_lat->avg[idx] += val;
|
io_lat->avg[idx] += val;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
static void
|
||||||
bfa_ioim_profile_start(struct bfa_ioim_s *ioim)
|
bfa_ioim_profile_start(struct bfa_ioim_s *ioim)
|
||||||
{
|
{
|
||||||
ioim->start_time = jiffies;
|
ioim->start_time = jiffies;
|
||||||
|
|
Loading…
Reference in New Issue