From: Rashika Kheria Date: Sat, 14 Dec 2013 14:08:08 +0000 (+0530) Subject: drivers: ata: Mark the function ahci_init_interrupts() as static in ahci.c X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d934145139664daa1ae918d3f0a7f3f47225ff33;p=linux-beck.git drivers: ata: Mark the function ahci_init_interrupts() as static in ahci.c This patch marks the function ahci_init_interrupts() as static in ahci.c because it is not used outside this file. Thus, it also eliminates the following warning in ahci.c: drivers/ata/ahci.c:1099:5: warning: no previous prototype for ‘ahci_init_interrupts’ [-Wmissing-prototypes] Signed-off-by: Rashika Kheria Signed-off-by: Tejun Heo Reviewed-by: Josh Triplett --- diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index ef8642e12a76..ea5b5a33a8b8 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c @@ -1145,7 +1145,7 @@ static inline void ahci_gtf_filter_workaround(struct ata_host *host) {} #endif -int ahci_init_interrupts(struct pci_dev *pdev, struct ahci_host_priv *hpriv) +static int ahci_init_interrupts(struct pci_dev *pdev, struct ahci_host_priv *hpriv) { int rc; unsigned int maxvec;