From patchwork Mon Dec 3 18:34:42 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [v2,4/4] pata_of_platform: fix compile error Date: Mon, 03 Dec 2012 08:34:42 -0000 From: Brian Norris X-Patchwork-Id: 203415 Message-Id: <1354559682-30965-4-git-send-email-computersforpeace@gmail.com> To: Jeff Garzik Cc: , Tejun Heo , Brian Norris I failed to include , causing this error: drivers/ata/pata_of_platform.c:93: error: 'ata_platform_remove_one' undeclared here (not in a function) Signed-off-by: Brian Norris --- drivers/ata/pata_of_platform.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/ata/pata_of_platform.c b/drivers/ata/pata_of_platform.c index cd0f9da..e5b234c 100644 --- a/drivers/ata/pata_of_platform.c +++ b/drivers/ata/pata_of_platform.c @@ -14,6 +14,7 @@ #include #include #include +#include static int __devinit pata_of_platform_probe(struct platform_device *ofdev) {