aboutsummaryrefslogtreecommitdiffstats
path: root/include/acpi
diff options
context:
space:
mode:
authorLen Brown <len.brown@intel.com>2009-04-05 01:40:06 -0400
committerLen Brown <len.brown@intel.com>2009-04-05 01:40:06 -0400
commit12648810506eaa063dc23b66514fbb4796f34312 (patch)
tree4cd16290c9e1350d946a92ca8d5624cdd683b739 /include/acpi
parentMerge branch 'psd' into release (diff)
parentACPI: fix CONFIG_ACPI=n build (diff)
downloadlinux-dev-12648810506eaa063dc23b66514fbb4796f34312.tar.xz
linux-dev-12648810506eaa063dc23b66514fbb4796f34312.zip
Merge branch 'video' into release
Conflicts: drivers/acpi/video.c Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include/acpi')
-rw-r--r--include/acpi/video.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/acpi/video.h b/include/acpi/video.h
new file mode 100644
index 000000000000..f0275bb79ce4
--- /dev/null
+++ b/include/acpi/video.h
@@ -0,0 +1,11 @@
+#ifndef __ACPI_VIDEO_H
+#define __ACPI_VIDEO_H
+
+#if (defined CONFIG_ACPI_VIDEO || defined CONFIG_ACPI_VIDEO_MODULE)
+extern int acpi_video_register(void);
+#else
+static inline int acpi_video_register(void) { return 0; }
+#endif
+
+#endif
+