projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
42268e2
)
ata: fix sparse warning in pata_acpi.c
author
Harvey Harrison
<harvey.harrison@gmail.com>
Thu, 14 Feb 2008 05:14:31 +0000
(21:14 -0800)
committer
Jeff Garzik
<jeff@garzik.org>
Fri, 15 Feb 2008 18:51:33 +0000
(13:51 -0500)
drivers/ata/pata_acpi.c:80:2: warning: returning void-valued expression
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
drivers/ata/pata_acpi.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/ata/pata_acpi.c
b/drivers/ata/pata_acpi.c
index 244098a80ce48c43e81c803f16ccb5fe9a60d3a6..bdc3b9d7395c9ff0481dee0aa5a27d7d039e2b17 100644
(file)
--- a/
drivers/ata/pata_acpi.c
+++ b/
drivers/ata/pata_acpi.c
@@
-77,8
+77,8
@@
static int pacpi_cable_detect(struct ata_port *ap)
static void pacpi_error_handler(struct ata_port *ap)
{
-
return ata_bmdma_drive_eh(ap, pacpi_pre_reset, ata_std_softreset
,
-
NULL,
ata_std_postreset);
+
ata_bmdma_drive_eh(ap, pacpi_pre_reset, ata_std_softreset, NULL
,
+ ata_std_postreset);
}
/**