diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-07-29 15:35:00 +0100 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2011-08-13 14:50:25 -0400 |
commit | 55156d240a4d41d47310278c5139e24517f1c65b (patch) | |
tree | e7d2dc5c14ee9ccee70bd381153233d0f87adacb /drivers/mmc | |
parent | 9b7bbe1085eb2b0f2d5d81f4116772cb2af497a4 (diff) | |
download | linux-55156d240a4d41d47310278c5139e24517f1c65b.tar.bz2 |
mmc: sdhci-s3c: Fix build for header change
A header change has removed an implicit inclusion of module.h, breaking
the build due to the use of THIS_MODULE. Fix that.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/host/sdhci-s3c.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/host/sdhci-s3c.c b/drivers/mmc/host/sdhci-s3c.c index 03da44a1b2ab..2bd7bf4fece7 100644 --- a/drivers/mmc/host/sdhci-s3c.c +++ b/drivers/mmc/host/sdhci-s3c.c @@ -19,6 +19,7 @@ #include <linux/clk.h> #include <linux/io.h> #include <linux/gpio.h> +#include <linux/module.h> #include <linux/mmc/host.h> |