All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fix "extern inline"
@ 2004-11-10  4:55 Yoshinori Sato
  2004-12-01  1:33 ` "extern inline" purge? was: " Andrew Grover
  0 siblings, 1 reply; 3+ messages in thread
From: Yoshinori Sato @ 2004-11-10  4:55 UTC (permalink / raw)
  To: Linus Torvalds, Andrew Morton; +Cc: linux-kernel

Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>

===== include/linux/bitops.h 1.6 vs edited =====
--- 1.6/include/linux/bitops.h	2004-05-03 05:04:34 +09:00
+++ edited/include/linux/bitops.h	2004-11-08 15:36:48 +09:00
@@ -42,7 +42,7 @@
  * fls: find last bit set.
  */
 
-extern __inline__ int generic_fls(int x)
+static __inline__ int generic_fls(int x)
 {
 	int r = 32;
 
@@ -71,7 +71,7 @@
 	return r;
 }
 
-extern __inline__ int get_bitmask_order(unsigned int count)
+static __inline__ int get_bitmask_order(unsigned int count)
 {
 	int order;
 	
-- 
Yoshinori Sato
<ysato@users.sourceforge.jp>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2004-12-01  8:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-11-10  4:55 [PATCH] fix "extern inline" Yoshinori Sato
2004-12-01  1:33 ` "extern inline" purge? was: " Andrew Grover
2004-12-01  8:43   ` Arnd Bergmann

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.