diff options
| author | Joe Lawrence <[email protected]> | 2014-06-25 21:05:49 +0000 |
|---|---|---|
| committer | Christoph Hellwig <[email protected]> | 2014-07-25 21:16:57 +0000 |
| commit | 5767d25f0d0933ebba111dfb6ae5c820add8d8e4 (patch) | |
| tree | 36407800f13804d5af5e9a15de251815237d9c72 /drivers/message/fusion/mptbase.c | |
| parent | mpt3sas: combine fw_event_work and its event_data (diff) | |
| download | kernel-5767d25f0d0933ebba111dfb6ae5c820add8d8e4.tar.gz kernel-5767d25f0d0933ebba111dfb6ae5c820add8d8e4.zip | |
mptfusion: mark file-private functions as static
Fixes the following sparse warnings:
drivers/message/fusion/mptbase.c:7011:1: warning: symbol
'mpt_SoftResetHandler' was not declared. Should it be static?
drivers/message/fusion/mptsas.c:1578:23: warning: symbol
'mptsas_refreshing_device_handles' was not declared. Should it be
static?
drivers/message/fusion/mptsas.c:3653:24: warning: symbol
'mptsas_expander_add' was not declared. Should it be static?
drivers/message/fusion/mptsas.c:5327:1: warning: symbol
'mptsas_shutdown' was not declared. Should it be static?
drivers/message/fusion/mptspi.c:624:1: warning: symbol
'mptscsih_quiesce_raid' was not declared. Should it be static?
Signed-off-by: Joe Lawrence <[email protected]>
Acked-by: Sreekanth Reddy <[email protected]>
Reviewed-by: Christoph Hellwig <[email protected]>
Signed-off-by: Christoph Hellwig <[email protected]>
Diffstat (limited to 'drivers/message/fusion/mptbase.c')
| -rw-r--r-- | drivers/message/fusion/mptbase.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/message/fusion/mptbase.c b/drivers/message/fusion/mptbase.c index ebc0af7d769c..ea30033a477c 100644 --- a/drivers/message/fusion/mptbase.c +++ b/drivers/message/fusion/mptbase.c @@ -7007,7 +7007,7 @@ EXPORT_SYMBOL(mpt_halt_firmware); * IOC doesn't reply to any outstanding request. This will transfer IOC * to READY state. **/ -int +static int mpt_SoftResetHandler(MPT_ADAPTER *ioc, int sleepFlag) { int rc; |
