[PATCH] ac97_codec: make bitfield unsigned

From: Randy.Dunlap
Date: Tue Jun 27 2006 - 20:50:52 EST


From: Randy Dunlap <rdunlap@xxxxxxxxxxxx>

Make a 1-bit bitfield unsigned (no space for sign bit).
Removes 24 sparse warnings from this one file:
include/linux/ac97_codec.h:262:13: error: dubious one-bit signed bitfield

Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxx>
---
include/linux/ac97_codec.h | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)

--- linux-2617-g11.orig/include/linux/ac97_codec.h
+++ linux-2617-g11/include/linux/ac97_codec.h
@@ -259,7 +259,7 @@ struct ac97_codec {
int type;
u32 model;

- int modem:1;
+ unsigned int modem:1;

struct ac97_ops *codec_ops;



---
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/