]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
p54: fix powerpc gcc warnings
authorChristian Lamparter <chunkeey@googlemail.com>
Sat, 11 Aug 2012 11:09:20 +0000 (13:09 +0200)
committerJohn W. Linville <linville@tuxdriver.com>
Mon, 13 Aug 2012 19:28:35 +0000 (15:28 -0400)
commit22c5649eef0fc37532e20c14d2656b28ca708a69
tree6e9a5d247dcffff5e9286065de27c0169cb672b8
parentdf32381896f5f0c78a371df2e49ab7c776b1a5ba
p54: fix powerpc gcc warnings

My commit "p54: parse output power table" introduced
the following compiler warnings for powerpc-allmodconfig

eeprom.c: In function 'p54_get_maxpower':
eeprom.c:291 warning: comparison of distinct pointer types lacks a cast
eeporm.c:292 warning: comparison of distinct pointer types lacks a cast
eeprom.c:293 warning: comparison of distinct pointer types lacks a cast
eeprom.c:294 warning: comparison of distinct pointer types lacks a cast

This patch fixes those by using max_t(u16
which forces a type cast.

Reported-by: Fengguang Wu <fengguang.wu@intel.com>
Tested-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Christian Lamparter <chunkeey@googlemail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/p54/eeprom.c