diff options
author | Jesper Juhl <jesper.juhl@gmail.com> | 2005-11-07 04:01:29 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-07 10:54:02 -0500 |
commit | 735d5661d5c5f023a78fbe68e771e261040ff1b7 (patch) | |
tree | b9865f0322d8e74661639f5f33b1897b23004659 /drivers/char/pcmcia | |
parent | fa671646f61182cd18234461a6e65f50c6558695 (diff) |
[PATCH] kfree cleanup: drivers/char
This is the drivers/char/ part of the big kfree cleanup patch.
Remove pointless checks for NULL prior to calling kfree() in drivers/char/.
Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/pcmcia')
-rw-r--r-- | drivers/char/pcmcia/synclink_cs.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/char/pcmcia/synclink_cs.c b/drivers/char/pcmcia/synclink_cs.c index 02d7f046c10a..2c326ea53421 100644 --- a/drivers/char/pcmcia/synclink_cs.c +++ b/drivers/char/pcmcia/synclink_cs.c | |||
@@ -2994,8 +2994,7 @@ int rx_alloc_buffers(MGSLPC_INFO *info) | |||
2994 | 2994 | ||
2995 | void rx_free_buffers(MGSLPC_INFO *info) | 2995 | void rx_free_buffers(MGSLPC_INFO *info) |
2996 | { | 2996 | { |
2997 | if (info->rx_buf) | 2997 | kfree(info->rx_buf); |
2998 | kfree(info->rx_buf); | ||
2999 | info->rx_buf = NULL; | 2998 | info->rx_buf = NULL; |
3000 | } | 2999 | } |
3001 | 3000 | ||