aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ata
diff options
context:
space:
mode:
authorBrian Norris <computersforpeace@gmail.com>2012-12-06 02:44:20 -0500
committerJeff Garzik <jgarzik@redhat.com>2012-12-14 09:38:17 -0500
commit071d3ad37485a82e0543a503272c45cdd32053dd (patch)
treec8713c41b81b2a6851fca21d38093b2258731ada /drivers/ata
parent11ace0c1defc4d1fe78afd29319bedef36da7078 (diff)
ahci_platform: make structs static
These structs are used only for ahci_platform.c, so they should be static. Thanks to Fengguang for the (automated) suggestion. Signed-off-by: Brian Norris <computersforpeace@gmail.com> Cc: Fengguang Wu <fengguang.wu@intel.com> Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/ata')
-rw-r--r--drivers/ata/ahci_platform.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/ata/ahci_platform.c b/drivers/ata/ahci_platform.c
index 1d90690d85f7..1cc467bdb63d 100644
--- a/drivers/ata/ahci_platform.c
+++ b/drivers/ata/ahci_platform.c
@@ -49,12 +49,12 @@ static struct platform_device_id ahci_devtype[] = {
49}; 49};
50MODULE_DEVICE_TABLE(platform, ahci_devtype); 50MODULE_DEVICE_TABLE(platform, ahci_devtype);
51 51
52struct ata_port_operations ahci_platform_ops = { 52static struct ata_port_operations ahci_platform_ops = {
53 .inherits = &ahci_ops, 53 .inherits = &ahci_ops,
54 .host_stop = ahci_host_stop, 54 .host_stop = ahci_host_stop,
55}; 55};
56 56
57struct ata_port_operations ahci_platform_retry_srst_ops = { 57static struct ata_port_operations ahci_platform_retry_srst_ops = {
58 .inherits = &ahci_pmp_retry_srst_ops, 58 .inherits = &ahci_pmp_retry_srst_ops,
59 .host_stop = ahci_host_stop, 59 .host_stop = ahci_host_stop,
60}; 60};
@@ -323,7 +323,7 @@ disable_unprepare_clk:
323} 323}
324#endif 324#endif
325 325
326SIMPLE_DEV_PM_OPS(ahci_pm_ops, ahci_suspend, ahci_resume); 326static SIMPLE_DEV_PM_OPS(ahci_pm_ops, ahci_suspend, ahci_resume);
327 327
328static const struct of_device_id ahci_of_match[] = { 328static const struct of_device_id ahci_of_match[] = {
329 { .compatible = "snps,spear-ahci", }, 329 { .compatible = "snps,spear-ahci", },