* - driver-core-use-ret-variable-in-unregister_dynamic_debug_module.patch removed from -mm tree
@ 2008-11-13 21:27 akpm
0 siblings, 0 replies; only message in thread
From: akpm @ 2008-11-13 21:27 UTC (permalink / raw)
To: johfel, greg, jbaron, mm-commits
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
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-11-13 21:28 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-13 21:27 - driver-core-use-ret-variable-in-unregister_dynamic_debug_module.patch removed from -mm tree akpm
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.