|
@@ -209,17 +209,18 @@ void c8sectpfe_tuner_unregister_frontend(struct c8sectpfe *c8sectpfe,
|
|
|
|
|
|
tsin = fei->channel_data[n];
|
|
|
|
|
|
- if (tsin && tsin->frontend) {
|
|
|
- dvb_unregister_frontend(tsin->frontend);
|
|
|
- dvb_frontend_detach(tsin->frontend);
|
|
|
- }
|
|
|
+ if (tsin) {
|
|
|
+ if (tsin->frontend) {
|
|
|
+ dvb_unregister_frontend(tsin->frontend);
|
|
|
+ dvb_frontend_detach(tsin->frontend);
|
|
|
+ }
|
|
|
|
|
|
- if (tsin)
|
|
|
i2c_put_adapter(tsin->i2c_adapter);
|
|
|
|
|
|
- if (tsin && tsin->i2c_client) {
|
|
|
- module_put(tsin->i2c_client->dev.driver->owner);
|
|
|
- i2c_unregister_device(tsin->i2c_client);
|
|
|
+ if (tsin->i2c_client) {
|
|
|
+ module_put(tsin->i2c_client->dev.driver->owner);
|
|
|
+ i2c_unregister_device(tsin->i2c_client);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|