From: Stephen Rothwell Date: Sun, 9 Oct 2011 14:35:16 +0000 (-0400) Subject: mmc: using module_param requires the inclusion of moduleparam.h X-Git-Tag: v3.2-rc1~129^2~22 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3f102ae926c01bccc9520a62cff833fde889ed6a;p=platform%2Fkernel%2Flinux-exynos.git mmc: using module_param requires the inclusion of moduleparam.h Commit "mmc: add module param to set fault injection attributes" adds a module_param to this file. But it is relying on the old implicit "module.h is everywhere" behaviour, and without the explicit include of moduleparam.h, the pending module.h split up produces this error: core/debugfs.c:28:35: error: expected ')' before numeric constant Signed-off-by: Stephen Rothwell Signed-off-by: Paul Gortmaker Signed-off-by: Chris Ball --- diff --git a/drivers/mmc/core/debugfs.c b/drivers/mmc/core/debugfs.c index da69aac..6045ea4 100644 --- a/drivers/mmc/core/debugfs.c +++ b/drivers/mmc/core/debugfs.c @@ -7,6 +7,7 @@ * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ +#include #include #include #include