summaryrefslogtreecommitdiff
path: root/drivers/platform
diff options
context:
space:
mode:
authorPaulo Alcantara <pcacjr@zytor.com>2017-07-30 12:40:50 -0300
committerAndy Shevchenko <andriy.shevchenko@linux.intel.com>2017-08-13 15:26:54 +0300
commit50c55168d78eac9ef49a0953155b216bc685062a (patch)
tree76f6520dc4d94bdafc8fcfb43f9a5b05cb1a565b /drivers/platform
parentfbcb4a578bc29cfad82f838247ff1c2869433759 (diff)
platform/x86: hp-wmi: Remove unused macro helper
The commit d8193cff3390 ("platform/x86: hp-wmi: Standardize enum usage for constants") introduced a macro that had been never used. Remove it. Signed-off-by: Paulo Alcantara <pcacjr@zytor.com> [andy wrote commit message] Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Diffstat (limited to 'drivers/platform')
-rw-r--r--drivers/platform/x86/hp-wmi.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/platform/x86/hp-wmi.c b/drivers/platform/x86/hp-wmi.c
index c2ca5c22f8d2..b4ed3dc983d5 100644
--- a/drivers/platform/x86/hp-wmi.c
+++ b/drivers/platform/x86/hp-wmi.c
@@ -107,13 +107,6 @@ enum hp_wmi_hardware_mask {
HPWMI_TABLET_MASK = 0x04,
};
-#define BIOS_ARGS_INIT(write, ctype, size) \
- (struct bios_args) { .signature = 0x55434553, \
- .command = (write) ? 0x2 : 0x1, \
- .commandtype = (ctype), \
- .datasize = (size), \
- .data = 0 }
-
struct bios_return {
u32 sigpass;
u32 return_code;