diff options
author | Eric Anholt <eric@anholt.net> | 2006-12-28 11:53:33 -0800 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2006-12-28 12:16:48 -0800 |
commit | c7083a6f30fdf1859f60beba4c352bd790af4773 (patch) | |
tree | 79bcf4086fbe5fdd4884747303453b2277204884 /src/i830_dvo.c | |
parent | 778db49616b233f5a2f4f007ceb62a1a878a6e25 (diff) |
Add WIP CH7017 LVDS driver. This is disconnected because it's untested.
Diffstat (limited to 'src/i830_dvo.c')
-rw-r--r-- | src/i830_dvo.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/i830_dvo.c b/src/i830_dvo.c index 6d4039a5..d1010545 100644 --- a/src/i830_dvo.c +++ b/src/i830_dvo.c @@ -51,6 +51,12 @@ static const char *ivch_symbols[] = { NULL }; #endif +#if 0 +static const char *ch7017_symbols[] = { + "ch7017_methods", + NULL +}; +#endif /* driver list */ struct _I830DVODriver i830_dvo_drivers[] = @@ -63,6 +69,10 @@ struct _I830DVODriver i830_dvo_drivers[] = {I830_DVO_CHIP_LVDS, "ivch", "ivch_methods", (0x2 << 1), ivch_symbols, NULL, NULL, NULL}, */ + /* + { I830_DVO_CHIP_LVDS, "ch7017", "ch7017_methods", + (CH7017_ADDR_1 << 1), ch7017_symbols, NULL, NULL, NULL } + */ }; #define I830_NUM_DVO_DRIVERS (sizeof(i830_dvo_drivers)/sizeof(struct _I830DVODriver)) |