linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] printk: Remove double asmlinkage in printk_emit
@ 2014-03-17 12:55 Simon Kågström
  0 siblings, 0 replies; only message in thread
From: Simon Kågström @ 2014-03-17 12:55 UTC (permalink / raw)
  To: linux-kernel, joe, kay, akpm, nhorman, tj

The double asmlinkage was introduced in
7ff9554bb578ba02166071d2d487b7fc7d860d62 ("printk: convert byte-buffer
to variable-length record buffer").

Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
---
 include/linux/printk.h |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/include/linux/printk.h b/include/linux/printk.h
index 3db126f..c34f0fb 100644
--- a/include/linux/printk.h
+++ b/include/linux/printk.h
@@ -124,9 +124,9 @@ asmlinkage __printf(1, 0)
 int vprintk(const char *fmt, va_list args);
 
 asmlinkage __printf(5, 6) __cold
-asmlinkage int printk_emit(int facility, int level,
-			   const char *dict, size_t dictlen,
-			   const char *fmt, ...);
+int printk_emit(int facility, int level,
+		const char *dict, size_t dictlen,
+		const char *fmt, ...);
 
 asmlinkage __printf(1, 2) __cold
 int printk(const char *fmt, ...);
-- 
1.7.9.6


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2014-03-17 13:05 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-17 12:55 [PATCH] printk: Remove double asmlinkage in printk_emit Simon Kågström

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).