diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-05-27 15:50:58 -0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-10-31 19:31:19 -0400 |
commit | daaa5f7cbee37dfc8464d350f1eacd6e94b278cc (patch) | |
tree | dec72cbeee1d5fbb169c21305510918818a0d45d /drivers | |
parent | 056075c76417b112b4924e7b6386fdc6dfc9ac03 (diff) | |
download | linux-stable-daaa5f7cbee37dfc8464d350f1eacd6e94b278cc.tar.gz linux-stable-daaa5f7cbee37dfc8464d350f1eacd6e94b278cc.tar.bz2 linux-stable-daaa5f7cbee37dfc8464d350f1eacd6e94b278cc.zip |
md: Add in export.h for files using EXPORT_SYMBOL
These files were getting the defines for EXPORT_SYMBOL because
device.h was including module.h. But we are going to put an
end to that. So add the proper export.h include now.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/md/dm-snap-persistent.c | 1 | ||||
-rw-r--r-- | drivers/md/dm-snap-transient.c | 1 | ||||
-rw-r--r-- | drivers/md/dm-uevent.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/drivers/md/dm-snap-persistent.c b/drivers/md/dm-snap-persistent.c index d1f1d7017103..3ac415675b6c 100644 --- a/drivers/md/dm-snap-persistent.c +++ b/drivers/md/dm-snap-persistent.c @@ -10,6 +10,7 @@ #include <linux/mm.h> #include <linux/pagemap.h> #include <linux/vmalloc.h> +#include <linux/export.h> #include <linux/slab.h> #include <linux/dm-io.h> diff --git a/drivers/md/dm-snap-transient.c b/drivers/md/dm-snap-transient.c index a0898a66a2f8..1ce9a2586e41 100644 --- a/drivers/md/dm-snap-transient.c +++ b/drivers/md/dm-snap-transient.c @@ -10,6 +10,7 @@ #include <linux/mm.h> #include <linux/pagemap.h> #include <linux/vmalloc.h> +#include <linux/export.h> #include <linux/slab.h> #include <linux/dm-io.h> diff --git a/drivers/md/dm-uevent.c b/drivers/md/dm-uevent.c index 6b1e3b61b25e..8efe033bab55 100644 --- a/drivers/md/dm-uevent.c +++ b/drivers/md/dm-uevent.c @@ -22,6 +22,7 @@ #include <linux/slab.h> #include <linux/kobject.h> #include <linux/dm-ioctl.h> +#include <linux/export.h> #include "dm.h" #include "dm-uevent.h" |