char is not signed on all architectures. This fixes a compiletime warning and bug on PPC. Signed-off-by: Michael Buesch <mb@xxxxxxxxx> Index: bu3sch-wireless-dev/include/net/d80211.h =================================================================== --- bu3sch-wireless-dev.orig/include/net/d80211.h 2007-02-20 20:35:17.000000000 +0100 +++ bu3sch-wireless-dev/include/net/d80211.h 2007-02-20 20:42:13.000000000 +0100 @@ -542,9 +542,9 @@ struct ieee80211_hw { int channel_change_time; /* Maximum values for various statistics. * Leave at 0 to indicate no support. Use negative numbers for dBm. */ - char max_rssi; - char max_signal; - char max_noise; + s8 max_rssi; + s8 max_signal; + s8 max_noise; /* Number of available hardware TX queues for data packets. * WMM requires at least four queues. */ -- Greetings Michael. - To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html