diff options
author | Patrick Boettcher <devnull@localhost> | 2005-03-14 13:44:17 +0000 |
---|---|---|
committer | Patrick Boettcher <devnull@localhost> | 2005-03-14 13:44:17 +0000 |
commit | 9b285da2fbc8953c49ee1fffc5275ee742c77347 (patch) | |
tree | deb2bc6979ae1966c23d7c25e9df3949d7fdf119 /linux/drivers/media/dvb/frontends/dib3000mb.c | |
parent | e1d82fd29f6490d656020ed16634e33fc4aca471 (diff) | |
download | mediapointer-dvb-s2-9b285da2fbc8953c49ee1fffc5275ee742c77347.tar.gz mediapointer-dvb-s2-9b285da2fbc8953c49ee1fffc5275ee742c77347.tar.bz2 |
- added native support for the dtt200u (Yakumo/Typhoon/Hama) USB2.0 device
- URBs are now submitted, when the actual transfer began, not right from the device plugin (solves a lot of problems)
- minor fixes in the dib3000-frontends
Diffstat (limited to 'linux/drivers/media/dvb/frontends/dib3000mb.c')
-rw-r--r-- | linux/drivers/media/dvb/frontends/dib3000mb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linux/drivers/media/dvb/frontends/dib3000mb.c b/linux/drivers/media/dvb/frontends/dib3000mb.c index 02ee722a1..a853d12a2 100644 --- a/linux/drivers/media/dvb/frontends/dib3000mb.c +++ b/linux/drivers/media/dvb/frontends/dib3000mb.c @@ -712,6 +712,7 @@ struct dvb_frontend* dib3000mb_attach(const struct dib3000_config* config, state = (struct dib3000_state*) kmalloc(sizeof(struct dib3000_state), GFP_KERNEL); if (state == NULL) goto error; + memset(state,0,sizeof(struct dib3000_state)); /* setup the state */ state->i2c = i2c; |