diff options
author | Zhang Yanfei <zhangyanfei@cn.fujitsu.com> | 2013-03-12 01:27:29 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-03-18 20:09:37 -0400 |
commit | b9a129f4813ef5dea8da4670e100f8ba89abebea (patch) | |
tree | 3d31a1ce93c054030964b3736cc58919225a5b6f /drivers/tty/serial/icom.c | |
parent | 7bbe08d6b89fce09ae4e6a7ce62ccd3c279a31ce (diff) |
driver: tty: serial: remove cast for kzalloc return value
remove cast for kzalloc return value.
Signed-off-by: Zhang Yanfei <zhangyanfei@cn.fujitsu.com>
Cc: Jiri Slaby <jslaby@suse.cz>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial/icom.c')
-rw-r--r-- | drivers/tty/serial/icom.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/tty/serial/icom.c b/drivers/tty/serial/icom.c index bc9e6b017b05..18ed5aebb166 100644 --- a/drivers/tty/serial/icom.c +++ b/drivers/tty/serial/icom.c | |||
@@ -1415,8 +1415,7 @@ static int icom_alloc_adapter(struct icom_adapter | |||
1415 | struct icom_adapter *cur_adapter_entry; | 1415 | struct icom_adapter *cur_adapter_entry; |
1416 | struct list_head *tmp; | 1416 | struct list_head *tmp; |
1417 | 1417 | ||
1418 | icom_adapter = (struct icom_adapter *) | 1418 | icom_adapter = kzalloc(sizeof(struct icom_adapter), GFP_KERNEL); |
1419 | kzalloc(sizeof(struct icom_adapter), GFP_KERNEL); | ||
1420 | 1419 | ||
1421 | if (!icom_adapter) { | 1420 | if (!icom_adapter) { |
1422 | return -ENOMEM; | 1421 | return -ENOMEM; |