* [PATCH][TRIVIAL] ata:pata_pdc2027x: Fix compiler warnings
@ 2013-04-09 7:05 Wang YanQing
0 siblings, 0 replies; only message in thread
From: Wang YanQing @ 2013-04-09 7:05 UTC (permalink / raw)
To: jkosina; +Cc: linux-kernel, trivial
Fix the follwing warnings:
linux/drivers/ata/pata_pdc2027x.c:66: warning: 'pdc2027x_reinit_one' declared 'static' but never defined
pdc2027x_reinit_one are defined only when CONFIG_PM is defined,
thus making it conditional.
Signed-off-by: Wang YanQing <udknight@gmail.com>
---
drivers/ata/pata_pdc2027x.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/ata/pata_pdc2027x.c b/drivers/ata/pata_pdc2027x.c
index 3f94a88..c76e659 100644
--- a/drivers/ata/pata_pdc2027x.c
+++ b/drivers/ata/pata_pdc2027x.c
@@ -63,7 +63,9 @@ enum {
};
static int pdc2027x_init_one(struct pci_dev *pdev, const struct pci_device_id *ent);
+#ifdef CONFIG_PM
static int pdc2027x_reinit_one(struct pci_dev *pdev);
+#endif
static int pdc2027x_prereset(struct ata_link *link, unsigned long deadline);
static void pdc2027x_set_piomode(struct ata_port *ap, struct ata_device *adev);
static void pdc2027x_set_dmamode(struct ata_port *ap, struct ata_device *adev);
--
1.7.12.4.dirty
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2013-04-09 7:06 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-09 7:05 [PATCH][TRIVIAL] ata:pata_pdc2027x: Fix compiler warnings Wang YanQing
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox