diff options
author | Lukas Wunner <lukas@wunner.de> | 2016-02-10 08:17:41 -0500 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2016-02-11 03:23:59 -0500 |
commit | b7172119714781d15128cd1ae029bd028b0bf37a (patch) | |
tree | dfd7d402b2b587d8ed485ad04dec02b143e91aa9 | |
parent | 3c5b267314ff00b4a9536769cc1aafc71384e559 (diff) |
apple-gmux: Fix build breakage if !CONFIG_ACPI
The DRM drivers i915, nouveau and radeon may be compiled with
CONFIG_ACPI not set, in which case acpi_dev_present() is undefined.
Add a no-op stub for apple_gmux_present() which is used if
CONFIG_APPLE_GMUX is not enabled to avoid build breakage.
(CONFIG_APPLE_GMUX depends on CONFIG_ACPI.)
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Lukas Wunner <lukas@wunner.de>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20160210131741.GA15492@wunner.de
-rw-r--r-- | include/linux/apple-gmux.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/include/linux/apple-gmux.h b/include/linux/apple-gmux.h index feebc2840462..b2d32e01dfe4 100644 --- a/include/linux/apple-gmux.h +++ b/include/linux/apple-gmux.h | |||
@@ -22,6 +22,8 @@ | |||
22 | 22 | ||
23 | #define GMUX_ACPI_HID "APP000B" | 23 | #define GMUX_ACPI_HID "APP000B" |
24 | 24 | ||
25 | #if IS_ENABLED(CONFIG_APPLE_GMUX) | ||
26 | |||
25 | /** | 27 | /** |
26 | * apple_gmux_present() - detect if gmux is built into the machine | 28 | * apple_gmux_present() - detect if gmux is built into the machine |
27 | * | 29 | * |
@@ -33,7 +35,16 @@ | |||
33 | */ | 35 | */ |
34 | static inline bool apple_gmux_present(void) | 36 | static inline bool apple_gmux_present(void) |
35 | { | 37 | { |
36 | return IS_ENABLED(CONFIG_APPLE_GMUX) && acpi_dev_present(GMUX_ACPI_HID); | 38 | return acpi_dev_present(GMUX_ACPI_HID); |
37 | } | 39 | } |
38 | 40 | ||
41 | #else /* !CONFIG_APPLE_GMUX */ | ||
42 | |||
43 | static inline bool apple_gmux_present(void) | ||
44 | { | ||
45 | return false; | ||
46 | } | ||
47 | |||
48 | #endif /* !CONFIG_APPLE_GMUX */ | ||
49 | |||
39 | #endif /* LINUX_APPLE_GMUX_H */ | 50 | #endif /* LINUX_APPLE_GMUX_H */ |