public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fix warning about duplicate 'const'
@ 2004-03-08 23:43 Thomas Schlichter
  2004-03-09  0:14 ` Andrew Morton
  0 siblings, 1 reply; 15+ messages in thread
From: Thomas Schlichter @ 2004-03-08 23:43 UTC (permalink / raw)
  To: linux-kernel, Andrew Morton

[-- Attachment #1: Type: text/plain, Size: 804 bytes --]

Hi,

attached is a patch which fixes following wanings:

drivers/ide/ide-tape.c: In function `idetape_setup':
drivers/ide/ide-tape.c:4701: Warnung: duplicate `const'
drivers/video/matrox/matroxfb_g450.c: In function `g450_compute_bwlevel':
drivers/video/matrox/matroxfb_g450.c:129: Warnung: duplicate `const'
drivers/video/matrox/matroxfb_g450.c:130: Warnung: duplicate `const'
drivers/video/matrox/matroxfb_maven.c: In function `maven_compute_bwlevel':
drivers/video/matrox/matroxfb_maven.c:347: Warnung: duplicate `const'
drivers/video/matrox/matroxfb_maven.c:348: Warnung: duplicate `const'

This is done by removing the 'const' from the temporary variables of the min() 
and max() macros. For me it seems to have no negative impact, so please 
consider applying...

Best regards
   Thomas Schlichter

[-- Attachment #2: fix-duplicate-const-warning.diff --]
[-- Type: text/x-diff, Size: 678 bytes --]

--- linux-2.6.4-rc2/include/linux/kernel.h.orig	2004-03-04 07:16:34.000000000 +0100
+++ linux-2.6.4-rc2/include/linux/kernel.h	2004-03-09 00:34:21.980935992 +0100
@@ -168,15 +168,15 @@ extern void dump_stack(void);
  * "unnecessary" pointer comparison.
  */
 #define min(x,y) ({ \
-	const typeof(x) _x = (x);	\
-	const typeof(y) _y = (y);	\
-	(void) (&_x == &_y);		\
+	typeof(x) _x = (x);	\
+	typeof(y) _y = (y);	\
+	(void) (&_x == &_y);	\
 	_x < _y ? _x : _y; })
 
 #define max(x,y) ({ \
-	const typeof(x) _x = (x);	\
-	const typeof(y) _y = (y);	\
-	(void) (&_x == &_y);		\
+	typeof(x) _x = (x);	\
+	typeof(y) _y = (y);	\
+	(void) (&_x == &_y);	\
 	_x > _y ? _x : _y; })
 
 /*

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

end of thread, other threads:[~2004-03-16  1:52 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-03-08 23:43 [PATCH] fix warning about duplicate 'const' Thomas Schlichter
2004-03-09  0:14 ` Andrew Morton
2004-03-09  0:32   ` Linus Torvalds
2004-03-09  1:17     ` Thomas Schlichter
2004-03-09  1:32       ` Linus Torvalds
2004-03-09  1:35         ` Linus Torvalds
2004-03-10  4:08         ` Keith Duthie
     [not found]         ` <20040310054918.GB4068@twiddle.net>
2004-03-10  8:10           ` Gabriel Dos Reis
     [not found]           ` <20040310064001.GA7584@daikokuya.co.uk>
2004-03-10 10:15             ` Joseph S. Myers
2004-03-10 15:43           ` Linus Torvalds
2004-03-10 18:22             ` Richard Henderson
2004-03-10 18:29               ` Andrew Haley
2004-03-10 18:35                 ` Paul Koning
2004-03-10 18:37                 ` Richard Henderson
2004-03-16  1:46             ` Mike Stump

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