diff options
| author | Manu Abraham <devnull@localhost> | 2005-04-04 18:22:29 +0000 | 
|---|---|---|
| committer | Manu Abraham <devnull@localhost> | 2005-04-04 18:22:29 +0000 | 
| commit | 7265ea92fce1cfce33b2eb86c74e48952ba1d942 (patch) | |
| tree | 44a1951458f0676424487c9acec5ceefcb6e2e1a | |
| parent | 5763fb92a09f21f9bccad093fc465720399a8a4b (diff) | |
| download | mediapointer-dvb-s2-7265ea92fce1cfce33b2eb86c74e48952ba1d942.tar.gz mediapointer-dvb-s2-7265ea92fce1cfce33b2eb86c74e48952ba1d942.tar.bz2 | |
Compilation fix after twinhan-exp branch merge
| -rw-r--r-- | linux/drivers/media/dvb/bt8xx/dvb-bt8xx.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/linux/drivers/media/dvb/bt8xx/dvb-bt8xx.c b/linux/drivers/media/dvb/bt8xx/dvb-bt8xx.c index 58b860818..0d3e84bb6 100644 --- a/linux/drivers/media/dvb/bt8xx/dvb-bt8xx.c +++ b/linux/drivers/media/dvb/bt8xx/dvb-bt8xx.c @@ -514,7 +514,7 @@ static void frontend_init(struct dvb_bt8xx_card *card, u32 type)  		state->bt = card->bt;  		/*	DST is not a frontend, attaching the ASIC	*/ -		if ((dst_attach(state, card->dvb_adapter)) < 0) { +		if ((dst_attach(state, &card->dvb_adapter)) < 0) {  			printk("%s: Could not find a Twinhan DST.\n", __FUNCTION__);  			break;  		} @@ -523,7 +523,7 @@ static void frontend_init(struct dvb_bt8xx_card *card, u32 type)  		/*	Attach other DST peripherals if any		*/  		/*	Conditional Access device			*/  		if (state->dst_hw_cap & DST_TYPE_HAS_CA) { -			ret = dst_ca_attach(state, card->dvb_adapter); +			ret = dst_ca_attach(state, &card->dvb_adapter);  		}  		if (card->fe != NULL) {  			break; | 
