diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2007-10-30 09:50:03 +0100 |
---|---|---|
committer | Hans Verkuil <hverkuil@xs4all.nl> | 2007-10-30 09:50:03 +0100 |
commit | 5d965e61c61a17756d32b1728d5bc7ed7d4bb64f (patch) | |
tree | fafd7ee899a482b1c1201b736216c5866ca7203d /linux/drivers/media/video/ivtv/ivtv-driver.c | |
parent | 14a3c5d607facbabbdc7aa18c7de825412f9641f (diff) | |
download | mediapointer-dvb-s2-5d965e61c61a17756d32b1728d5bc7ed7d4bb64f.tar.gz mediapointer-dvb-s2-5d965e61c61a17756d32b1728d5bc7ed7d4bb64f.tar.bz2 |
ivtv: add ASUS Falcon2 support
From: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Diffstat (limited to 'linux/drivers/media/video/ivtv/ivtv-driver.c')
-rw-r--r-- | linux/drivers/media/video/ivtv/ivtv-driver.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/linux/drivers/media/video/ivtv/ivtv-driver.c b/linux/drivers/media/video/ivtv/ivtv-driver.c index 051593a17..ab9631417 100644 --- a/linux/drivers/media/video/ivtv/ivtv-driver.c +++ b/linux/drivers/media/video/ivtv/ivtv-driver.c @@ -185,6 +185,7 @@ MODULE_PARM_DESC(cardtype, "\t\t\t19 = Yuan PG600V2/GotView PCI DVD Lite\n" "\t\t\t20 = Club3D ZAP-TV1x01\n" "\t\t\t21 = AverTV MCE 116 Plus\n" + "\t\t\t22 = ASUS Falcon2\n" "\t\t\t 0 = Autodetect (default)\n" "\t\t\t-1 = Ignore this card\n\t\t"); MODULE_PARM_DESC(pal, "Set PAL standard: B, G, H, D, K, I, M, N, Nc, 60"); @@ -886,6 +887,10 @@ static void ivtv_load_and_init_modules(struct ivtv *itv) if (hw & IVTV_HW_CS53L32A) ivtv_request_module(itv, "cs53l32a"); #endif +#ifndef CONFIG_VIDEO_M52790 + if (hw & IVTV_HW_M52790) + ivtv_request_module(itv, "m52790"); +#endif /* check which i2c devices are actually found */ for (i = 0; i < 32; i++) { |