diff options
author | Jiri Slaby <jslaby@suse.cz> | 2013-01-03 09:53:09 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-16 01:43:15 -0500 |
commit | cc5ab61086334e72afdf970c032fecf5e5fcf7ca (patch) | |
tree | e21fb997c8c5b4bebca8eb73d4368c959b58c152 /drivers/char | |
parent | dabe2c1385cd53d91c0a318c0fb7d2c015c61458 (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/char')
-rw-r--r-- | drivers/char/pcmcia/synclink_cs.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/char/pcmcia/synclink_cs.c b/drivers/char/pcmcia/synclink_cs.c index f334aec65fc7..34e52ed0ea8c 100644 --- a/drivers/char/pcmcia/synclink_cs.c +++ b/drivers/char/pcmcia/synclink_cs.c | |||
@@ -765,9 +765,6 @@ static void bh_handler(struct work_struct *work) | |||
765 | struct tty_struct *tty; | 765 | struct tty_struct *tty; |
766 | int action; | 766 | int action; |
767 | 767 | ||
768 | if (!info) | ||
769 | return; | ||
770 | |||
771 | if (debug_level >= DEBUG_LEVEL_BH) | 768 | if (debug_level >= DEBUG_LEVEL_BH) |
772 | printk( "%s(%d):bh_handler(%s) entry\n", | 769 | printk( "%s(%d):bh_handler(%s) entry\n", |
773 | __FILE__,__LINE__,info->device_name); | 770 | __FILE__,__LINE__,info->device_name); |