public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [Patch 1/2] kbuild: two trivial fixes for check headers
@ 2009-06-04  8:01 Amerigo Wang
  2009-06-04  8:02 ` [Patch 2/2] kbuild: clean up scripts/headers.sh Amerigo Wang
  2009-06-04  9:15 ` [Patch 1/2] kbuild: two trivial fixes for check headers Sam Ravnborg
  0 siblings, 2 replies; 8+ messages in thread
From: Amerigo Wang @ 2009-06-04  8:01 UTC (permalink / raw)
  To: linux-kernel; +Cc: akpm, sam, Amerigo Wang, linux-kbuild


Remove a useless 'extern' in an exported header.
Fix a comment headers_check.pl.

Signed-off-by: WANG Cong <amwang@redhat.com>
Cc: Sam Ravnborg <sam@ravnborg.org>

------
diff --git a/include/mtd/jffs2-user.h b/include/mtd/jffs2-user.h
index fa94b0e..10dc7ef 100644
--- a/include/mtd/jffs2-user.h
+++ b/include/mtd/jffs2-user.h
@@ -18,7 +18,7 @@
 #undef je32_to_cpu
 #undef jemode_to_cpu
 
-extern int target_endian;
+int target_endian;
 
 #define t16(x) ({ __u16 __b = (x); (target_endian==__BYTE_ORDER)?__b:bswap_16(__b); })
 #define t32(x) ({ __u32 __b = (x); (target_endian==__BYTE_ORDER)?__b:bswap_32(__b); })
diff --git a/scripts/headers_check.pl b/scripts/headers_check.pl
index 56f90a4..ccdbace 100644
--- a/scripts/headers_check.pl
+++ b/scripts/headers_check.pl
@@ -2,7 +2,7 @@
 #
 # headers_check.pl execute a number of trivial consistency checks
 #
-# Usage: headers_check.pl dir [files...]
+# Usage: headers_check.pl dir arch [files...]
 # dir:   dir to look for included files
 # arch:  architecture
 # files: list of files to check

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

end of thread, other threads:[~2009-06-05  2:22 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-04  8:01 [Patch 1/2] kbuild: two trivial fixes for check headers Amerigo Wang
2009-06-04  8:02 ` [Patch 2/2] kbuild: clean up scripts/headers.sh Amerigo Wang
2009-06-04  9:15 ` [Patch 1/2] kbuild: two trivial fixes for check headers Sam Ravnborg
2009-06-04  9:23   ` Amerigo Wang
2009-06-04 10:39     ` Sam Ravnborg
2009-06-05  2:05       ` Amerigo Wang
2009-06-05  2:23       ` Jaswinder Singh Rajput
2009-06-04  9:56   ` Amerigo Wang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox