diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-07-10 13:20:26 -0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-10-31 19:31:33 -0400 |
commit | a8a359318530a779c8d28d86357d492adead5b1f (patch) | |
tree | 084373ab75cee6478bfed7f5975cac668dea2ece /drivers/video/fb_notify.c | |
parent | 44fc7ea0bfe9143551649a42eb35f1460566c3c5 (diff) |
video: Add export.h for THIS_MODULE/EXPORT_SYMBOL to drivers/video
With module.h being implicitly everywhere via device.h, the absence
of explicitly including something for EXPORT_SYMBOL went unnoticed.
Since we are heading to fix things up and clean module.h from the
device.h file, we need to explicitly include these files now.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'drivers/video/fb_notify.c')
-rw-r--r-- | drivers/video/fb_notify.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/fb_notify.c b/drivers/video/fb_notify.c index 8c020389e4fa..74c2da528884 100644 --- a/drivers/video/fb_notify.c +++ b/drivers/video/fb_notify.c | |||
@@ -12,6 +12,7 @@ | |||
12 | */ | 12 | */ |
13 | #include <linux/fb.h> | 13 | #include <linux/fb.h> |
14 | #include <linux/notifier.h> | 14 | #include <linux/notifier.h> |
15 | #include <linux/export.h> | ||
15 | 16 | ||
16 | static BLOCKING_NOTIFIER_HEAD(fb_notifier_list); | 17 | static BLOCKING_NOTIFIER_HEAD(fb_notifier_list); |
17 | 18 | ||