aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Cox <[email protected]>2012-12-07 23:11:14 +0100
committerRafael J. Wysocki <[email protected]>2012-12-07 23:11:14 +0100
commitcdc87c5a30f407ed1ce43d8a22261116873d5ef1 (patch)
treefe40df4b22b8049ae6fc6a760d6f360e66491cde
parent129ff8f8d58297b04f47b5d6fad81aa2d08404e1 (diff)
pnpacpi: fix incorrect TEST_ALPHA() test
TEST_ALPHA() is broken and always returns 0. [[email protected]: return false for '@' as well, per Bjorn] Signed-off-by: Alan Cox <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Cc: <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
-rw-r--r--drivers/pnp/pnpacpi/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pnp/pnpacpi/core.c b/drivers/pnp/pnpacpi/core.c
index ec8e914f756c..767f526209e8 100644
--- a/drivers/pnp/pnpacpi/core.c
+++ b/drivers/pnp/pnpacpi/core.c
@@ -58,7 +58,7 @@ static inline int __init is_exclusive_device(struct acpi_device *dev)
if (!(('0' <= (c) && (c) <= '9') || ('A' <= (c) && (c) <= 'F'))) \
return 0
#define TEST_ALPHA(c) \
- if (!('@' <= (c) || (c) <= 'Z')) \
+ if (!('A' <= (c) && (c) <= 'Z')) \
return 0
static int __init ispnpidacpi(const char *id)
{