* patch staging-slicoss-no-need-to-check-pointer-in-debugfs_remove.patch added to gregkh-2.6 tree
[not found] <20091218075621.GA4514@coldcone>
@ 2009-12-18 19:33 ` gregkh
0 siblings, 0 replies; only message in thread
From: gregkh @ 2009-12-18 19:33 UTC (permalink / raw)
To: randy.dunlap, gregkh, linux-kernel, sfr
This is a note to let you know that I've just added the patch titled
Subject: staging: slicoss No need to check pointer in debugfs_remove()
to my gregkh-2.6 tree. Its filename is
staging-slicoss-no-need-to-check-pointer-in-debugfs_remove.patch
This tree can be found at
http://www.kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/patches/
>From kirjanov@gmail.com Fri Dec 18 10:33:42 2009
From: "Denis Kirjanov <kirjanov@gmail.com" <kirjanov@gmail.com>
Date: Fri, 18 Dec 2009 10:56:21 +0300
Subject: staging: slicoss No need to check pointer in debugfs_remove()
To: gregkh@suse.de, liodot@gmail.com, charrer@alacritech.com
Cc: devel@linuxdriverproject.org
Message-ID: <20091218075621.GA4514@coldcone>
Content-Disposition: inline
No need to check pointer expicitly since it has been done in debugfs_remove()
Signed-off-by: Denis Kirjanov <kirjanov@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
---
drivers/staging/slicoss/slicoss.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
--- a/drivers/staging/slicoss/slicoss.c
+++ b/drivers/staging/slicoss/slicoss.c
@@ -3971,10 +3971,8 @@ static void slic_debug_adapter_create(st
static void slic_debug_adapter_destroy(struct adapter *adapter)
{
- if (adapter->debugfs_entry) {
- debugfs_remove(adapter->debugfs_entry);
- adapter->debugfs_entry = NULL;
- }
+ debugfs_remove(adapter->debugfs_entry);
+ adapter->debugfs_entry = NULL;
}
static void slic_debug_card_create(struct sliccard *card)
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-12-18 19:36 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20091218075621.GA4514@coldcone>
2009-12-18 19:33 ` patch staging-slicoss-no-need-to-check-pointer-in-debugfs_remove.patch added to gregkh-2.6 tree gregkh
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox