aboutsummaryrefslogtreecommitdiff
path: root/drivers/misc/cb710
diff options
context:
space:
mode:
authorJames Hogan <james@albanarts.com>2011-06-21 10:55:34 +0100
committerChris Ball <cjb@laptop.org>2011-06-25 18:52:24 -0400
commite9e8bcb8178e197d889ec31e79fa1ddc1732c8f9 (patch)
treea0597bfc55184dcb48b10cdccd4f93e207b22a6e /drivers/misc/cb710
parent3e713373ce07b9f59c3901e7d39bc1edccda28da (diff)
mmc: cb710: fix #ifdef HAVE_EFFICIENT_UNALIGNED_ACCESS
HAVE_EFFICIENT_UNALIGNED_ACCESS is a config option, therefore it needs the CONFIG_ before it when used by the preprocessor. Signed-off-by: James Hogan <james@albanarts.com> Acked-by: Michał Mirosław <mirq-linux@rere.qmqm.pl> Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/misc/cb710')
-rw-r--r--drivers/misc/cb710/sgbuf2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/cb710/sgbuf2.c b/drivers/misc/cb710/sgbuf2.c
index d019746551f3..2a40d0efdff5 100644
--- a/drivers/misc/cb710/sgbuf2.c
+++ b/drivers/misc/cb710/sgbuf2.c
@@ -47,7 +47,7 @@ static uint32_t sg_dwiter_read_buffer(struct sg_mapping_iter *miter)
static inline bool needs_unaligned_copy(const void *ptr)
{
-#ifdef HAVE_EFFICIENT_UNALIGNED_ACCESS
+#ifdef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
return false;
#else
return ((ptr - NULL) & 3) != 0;