diff options
author | Antonino A. Daplas <adaplas@gmail.com> | 2005-09-09 16:10:04 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-09 17:03:41 -0400 |
commit | 74f6ae84b2315c2fa8a4110b09a1c0f3dca92674 (patch) | |
tree | 47b3bae44b4c57a699d2c130510ff0fbe110fa97 /drivers/video/i810/Makefile | |
parent | 829e79b680210c4f4de435af6e1f90451922fc7d (diff) |
[PATCH] i810fb: Add i2c/DDC support
Add ddc/i2c support for i810fb. This will allow the driver to get display
information, especially for monitors with fickle timings. The i2c support
depends on CONFIG_FB_I810_GTF.
Changed __init* to __devinit*
Signed-off-by: Antonino Daplas <adaplas@pol.net>
Signed-off-by: Alexander Nyberg <alexn@telia.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/video/i810/Makefile')
-rw-r--r-- | drivers/video/i810/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/video/i810/Makefile b/drivers/video/i810/Makefile index 794ae76c7c4b..96e08c8ded97 100644 --- a/drivers/video/i810/Makefile +++ b/drivers/video/i810/Makefile | |||
@@ -4,7 +4,6 @@ | |||
4 | 4 | ||
5 | obj-$(CONFIG_FB_I810) += i810fb.o | 5 | obj-$(CONFIG_FB_I810) += i810fb.o |
6 | 6 | ||
7 | |||
8 | i810fb-objs := i810_main.o i810_accel.o | 7 | i810fb-objs := i810_main.o i810_accel.o |
9 | 8 | ||
10 | ifdef CONFIG_FB_I810_GTF | 9 | ifdef CONFIG_FB_I810_GTF |
@@ -12,3 +11,7 @@ i810fb-objs += i810_gtf.o | |||
12 | else | 11 | else |
13 | i810fb-objs += i810_dvt.o | 12 | i810fb-objs += i810_dvt.o |
14 | endif | 13 | endif |
14 | |||
15 | ifdef CONFIG_FB_I810_I2C | ||
16 | i810fb-objs += i810-i2c.o | ||
17 | endif | ||