diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-07-04 00:17:28 +0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-11-01 03:31:33 +0400 |
commit | 355b200bacdb6017669cdc5bc9e7b1037aac42a2 (patch) | |
tree | a5af77d70994a9aec822830512369036e7729418 /drivers/video/fb_ddc.c | |
parent | a8a359318530a779c8d28d86357d492adead5b1f (diff) | |
download | linux-355b200bacdb6017669cdc5bc9e7b1037aac42a2.tar.xz |
video: Add module.h to drivers/video files who really use it.
They were getting this implicitly by an include of module.h
from device.h -- but we are going to clean that up and break
that include chain, so include module.h explicitly now.
[ with contributions from Axel Lin <axel.lin@gmail.com> ]
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'drivers/video/fb_ddc.c')
-rw-r--r-- | drivers/video/fb_ddc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/video/fb_ddc.c b/drivers/video/fb_ddc.c index 4a874c8d039c..2b106f046fde 100644 --- a/drivers/video/fb_ddc.c +++ b/drivers/video/fb_ddc.c @@ -1,5 +1,5 @@ /* - * driver/vide/fb_ddc.c - DDC/EDID read support. + * drivers/video/fb_ddc.c - DDC/EDID read support. * * Copyright (C) 2006 Dennis Munsie <dmunsie@cecropia.com> * @@ -10,6 +10,7 @@ #include <linux/delay.h> #include <linux/device.h> +#include <linux/module.h> #include <linux/fb.h> #include <linux/i2c-algo-bit.h> #include <linux/slab.h> |