/shark/trunk/drivers/bttv/shark_bttv26.c |
30,11 → 30,15 |
return bttv_installed; |
} |
|
extern int videodev_init(void); |
|
int BTTV26_init() { |
|
if (bttv_installed == TRUE) |
return 0; |
|
videodev_init(); |
|
bttv_init_module(); |
|
bttv_installed = TRUE; |
/shark/trunk/drivers/bttv/bttv-cards.c |
2377,12 → 2377,10 |
if (autoload) |
request_module("tda7432"); |
} |
|
if (bttv_tvcards[btv->type].needs_tvaudio) { |
if (autoload) |
request_module("tvaudio"); |
} |
|
/* tuner modules */ |
if (btv->pinnacle_id != UNSET) { |
if (autoload) |
/shark/trunk/drivers/bttv/makefile |
10,7 → 10,7 |
|
OBJS_PATH = $(BASE)/drivers/bttv |
|
OBJS = bttv-if.o btcx-risc.o bttv-cards.o bttv-driver.o bttv-risc.o fg.o shark_bttv26.o |
OBJS = bttv-if.o btcx-risc.o bttv-cards.o bttv-driver.o bttv-risc.o shark_bttv26.o |
|
OTHERINCL += -I$(BASE)/drivers/bttv/include -I$(BASE)/drivers/linuxc26/include -I. |
|