aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/tty/synclinkmp.c
diff options
context:
space:
mode:
authorJiri Slaby <jslaby@suse.cz>2013-01-03 09:53:09 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-01-16 01:43:15 -0500
commitcc5ab61086334e72afdf970c032fecf5e5fcf7ca (patch)
treee21fb997c8c5b4bebca8eb73d4368c959b58c152 /drivers/tty/synclinkmp.c
parentdabe2c1385cd53d91c0a318c0fb7d2c015c61458 (diff)
TTY: synclink, remove unneeded tests
info in synclink bottom-halves cannot be NULL because it is taken from work_struct using container_of. Remove the tests. Signed-off-by: Jiri Slaby <jslaby@suse.cz> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/synclinkmp.c')
-rw-r--r--drivers/tty/synclinkmp.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/tty/synclinkmp.c b/drivers/tty/synclinkmp.c
index e4a2904af565..545402509cab 100644
--- a/drivers/tty/synclinkmp.c
+++ b/drivers/tty/synclinkmp.c
@@ -2007,9 +2007,6 @@ static void bh_handler(struct work_struct *work)
2007 SLMP_INFO *info = container_of(work, SLMP_INFO, task); 2007 SLMP_INFO *info = container_of(work, SLMP_INFO, task);
2008 int action; 2008 int action;
2009 2009
2010 if (!info)
2011 return;
2012
2013 if ( debug_level >= DEBUG_LEVEL_BH ) 2010 if ( debug_level >= DEBUG_LEVEL_BH )
2014 printk( "%s(%d):%s bh_handler() entry\n", 2011 printk( "%s(%d):%s bh_handler() entry\n",
2015 __FILE__,__LINE__,info->device_name); 2012 __FILE__,__LINE__,info->device_name);