aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ata/sata_sil.c
diff options
context:
space:
mode:
authorAlexander Beregalov <a.beregalov@gmail.com>2009-01-29 02:30:56 +0300
committerLinus Torvalds <torvalds@linux-foundation.org>2009-01-29 18:19:30 -0800
commit1737ef7598d3515fdc11cb9ba7e054f334404e04 (patch)
treee7b2bf38b99580081bf6cabb9d484cca7e9a98e8 /drivers/ata/sata_sil.c
parentDocumentation/Changes: add required versions for new filesystems (diff)
downloadlinux-dev-1737ef7598d3515fdc11cb9ba7e054f334404e04.tar.xz
linux-dev-1737ef7598d3515fdc11cb9ba7e054f334404e04.zip
sata_sil: Fix build breakage
Commit e57db7b (SATA Sil: Blacklist system that spins off disks during ACPI power off) breaks build like the following, in both cases when CONFIG_DMI set or not. drivers/ata/sata_sil.c: In function 'sil_broken_system_poweroff': drivers/ata/sata_sil.c:713: error: implicit declaration of function 'dmi_first_match' drivers/ata/sata_sil.c:713: warning: initialization makes pointer from integer without a cast sata_sil.c should include dmi.h Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to '')
-rw-r--r--drivers/ata/sata_sil.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/ata/sata_sil.c b/drivers/ata/sata_sil.c
index bfd55b085ae6..9f029595f454 100644
--- a/drivers/ata/sata_sil.c
+++ b/drivers/ata/sata_sil.c
@@ -44,6 +44,7 @@
#include <linux/device.h>
#include <scsi/scsi_host.h>
#include <linux/libata.h>
+#include <linux/dmi.h>
#define DRV_NAME "sata_sil"
#define DRV_VERSION "2.4"