diff options
author | Sudip Mukherjee <sudipm.mukherjee@gmail.com> | 2015-09-16 19:36:20 +0530 |
---|---|---|
committer | James Bottomley <JBottomley@Odin.com> | 2015-11-09 16:32:14 -0800 |
commit | cd9d715c28d0320acb53df68ebecc035cfe60913 (patch) | |
tree | 2177d6202b73040631445189568195f8058dca9f /drivers/scsi/FlashPoint.c | |
parent | 3209f9d780d137cdb54c85e0a776cb19e723a170 (diff) | |
download | linux-cd9d715c28d0320acb53df68ebecc035cfe60913.tar.bz2 |
FlashPoint: fix build warning
We have been getting a warning about non ANSI function.
warning: non-ANSI function declaration of function 'FPT_SccbMgrTableInitAll'
Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
Acked-by: Khalid Aziz <khalid@gonehiking.org>
Signed-off-by: James Bottomley <JBottomley@Odin.com>
Diffstat (limited to 'drivers/scsi/FlashPoint.c')
-rw-r--r-- | drivers/scsi/FlashPoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/FlashPoint.c b/drivers/scsi/FlashPoint.c index 5c74e4c52fe4..867b864f5047 100644 --- a/drivers/scsi/FlashPoint.c +++ b/drivers/scsi/FlashPoint.c @@ -2136,7 +2136,7 @@ static unsigned char FPT_SccbMgr_bad_isr(u32 p_port, unsigned char p_card, * *---------------------------------------------------------------------*/ -static void FPT_SccbMgrTableInitAll() +static void FPT_SccbMgrTableInitAll(void) { unsigned char thisCard; |