]> git.baikalelectronics.ru Git - kernel.git/commit
libahci_platform: Staticize ahci_platform_<en/dis>able_phys()
authorFabio Estevam <fabio.estevam@freescale.com>
Sat, 30 Aug 2014 19:39:09 +0000 (16:39 -0300)
committerTejun Heo <tj@kernel.org>
Sun, 31 Aug 2014 03:58:29 +0000 (23:58 -0400)
commitf495d6a4a469b9e64aa4696e079eef3e2a1464e3
tree1ce4c091ee89def3eb4122982131905843eae7d3
parentf07f0217664f306ad97dd6839b1bb3bb869f3ff2
libahci_platform: Staticize ahci_platform_<en/dis>able_phys()

ahci_platform_enable_phys() and ahci_platform_disable_phys() are currently
exported, but they are not used anywhere else other than libahci_platform.c.

So make them static and do not export them to fix the following sparse
warnings:

drivers/ata/libahci_platform.c:52:5: warning: symbol 'ahci_platform_enable_phys' was not declared. Should it be static?
drivers/ata/libahci_platform.c:88:6: warning: symbol 'ahci_platform_disable_phys' was not declared. Should it be static?

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
drivers/ata/libahci_platform.c