From: akpm@linux-foundation.org
To: johfel@users.sourceforge.net, greg@kroah.com, jbaron@redhat.com,
mm-commits@vger.kernel.org
Subject: - driver-core-use-ret-variable-in-unregister_dynamic_debug_module.patch removed from -mm tree
Date: Thu, 13 Nov 2008 13:27:57 -0800 [thread overview]
Message-ID: <200811132127.mADLRvOS028226@imap1.linux-foundation.org> (raw)
The patch titled
driver core: use 'ret' variable in unregister_dynamic_debug_module
has been removed from the -mm tree. Its filename was
driver-core-use-ret-variable-in-unregister_dynamic_debug_module.patch
This patch was dropped because it was merged into mainline or a subsystem tree
The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/
------------------------------------------------------
Subject: driver core: use 'ret' variable in unregister_dynamic_debug_module
From: Johann Felix Soden <johfel@users.sourceforge.net>
The 'ret' variable is assigned, but not used in the return statement. Fix
this.
Signed-off-by: Johann Felix Soden <johfel@users.sourceforge.net>
Acked-by: Jason Baron <jbaron@redhat.com>
Cc: Greg KH <greg@kroah.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
lib/dynamic_printk.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff -puN lib/dynamic_printk.c~driver-core-use-ret-variable-in-unregister_dynamic_debug_module lib/dynamic_printk.c
--- a/lib/dynamic_printk.c~driver-core-use-ret-variable-in-unregister_dynamic_debug_module
+++ a/lib/dynamic_printk.c
@@ -135,7 +135,7 @@ int unregister_dynamic_debug_module(char
nr_entries--;
out:
up(&debug_list_mutex);
- return 0;
+ return ret;
}
EXPORT_SYMBOL_GPL(unregister_dynamic_debug_module);
_
Patches currently in -mm which might be from johfel@users.sourceforge.net are
linux-next.patch
reply other threads:[~2008-11-13 21:28 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200811132127.mADLRvOS028226@imap1.linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=greg@kroah.com \
--cc=jbaron@redhat.com \
--cc=johfel@users.sourceforge.net \
--cc=linux-kernel@vger.kernel.org \
--cc=mm-commits@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.