aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorJonathan Nieder <jrnieder@gmail.com>2011-12-31 06:06:37 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-01-06 09:49:18 -0500
commit2dbbac330621e83d00e904d1139b62e7b360f946 (patch)
treecb2a7f0e508b6458e7a583b8a414e5d17b0b4c99 /drivers
parent01732ebaac701638aab5d7b63ea2ee14452afd33 (diff)
[media] dvb-bt8xx: handle errors from dvb_net_init
Clean up and error out if dvb_net_init fails (for example when running out of memory). From an audit of dvb_net_init callers, now that dvb_net_init has learned to return a nonzero value from time to time. [mchehab.redhat.com: codingstyle fix: printk() should include KERN_ facility level] Signed-off-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/media/dvb/bt8xx/dvb-bt8xx.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/drivers/media/dvb/bt8xx/dvb-bt8xx.c b/drivers/media/dvb/bt8xx/dvb-bt8xx.c
index 1952f6bfc90e..8a31349dd7d5 100644
--- a/drivers/media/dvb/bt8xx/dvb-bt8xx.c
+++ b/drivers/media/dvb/bt8xx/dvb-bt8xx.c
@@ -782,7 +782,12 @@ static int __devinit dvb_bt8xx_load_card(struct dvb_bt8xx_card *card, u32 type)
782 goto err_remove_mem_frontend; 782 goto err_remove_mem_frontend;
783 } 783 }
784 784
785 dvb_net_init(&card->dvb_adapter, &card->dvbnet, &card->demux.dmx); 785 result = dvb_net_init(&card->dvb_adapter, &card->dvbnet, &card->demux.dmx);
786 if (result < 0) {
787 printk(KERN_ERR,
788 "dvb_bt8xx: dvb_net_init failed (errno = %d)\n", result);
789 goto err_disconnect_frontend;
790 }
786 791
787 tasklet_init(&card->bt->tasklet, dvb_bt8xx_task, (unsigned long) card); 792 tasklet_init(&card->bt->tasklet, dvb_bt8xx_task, (unsigned long) card);
788 793
@@ -790,6 +795,8 @@ static int __devinit dvb_bt8xx_load_card(struct dvb_bt8xx_card *card, u32 type)
790 795
791 return 0; 796 return 0;
792 797
798err_disconnect_frontend:
799 card->demux.dmx.disconnect_frontend(&card->demux.dmx);
793err_remove_mem_frontend: 800err_remove_mem_frontend:
794 card->demux.dmx.remove_frontend(&card->demux.dmx, &card->fe_mem); 801 card->demux.dmx.remove_frontend(&card->demux.dmx, &card->fe_mem);
795err_remove_hw_frontend: 802err_remove_hw_frontend: