aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/macintosh
diff options
context:
space:
mode:
authorroel kluin <roel.kluin@gmail.com>2008-11-28 20:17:27 -0500
committerPaul Mackerras <paulus@samba.org>2008-12-03 05:04:02 -0500
commit2fd091f3eebc5accefa5f77ff04436982765d15c (patch)
treebb7f52a42dcf5d7291bf2a1b2ac51da52330529f /drivers/macintosh
parente6a437eba09f1c3505bedf7a9a9766a878ca09fa (diff)
powerpc/macintosh: Fix unsigned check in smu_sat_get_sdb_partition()
i2c_smbus_read_word_data() returns a s32, which may be negative but unsigned len cannot be negative. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'drivers/macintosh')
-rw-r--r--drivers/macintosh/windfarm_smu_sat.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/macintosh/windfarm_smu_sat.c b/drivers/macintosh/windfarm_smu_sat.c
index 7f2be4baaeda..7847e981ac33 100644
--- a/drivers/macintosh/windfarm_smu_sat.c
+++ b/drivers/macintosh/windfarm_smu_sat.c
@@ -87,11 +87,12 @@ struct smu_sdbp_header *smu_sat_get_sdb_partition(unsigned int sat_id, int id,
87 return NULL; 87 return NULL;
88 } 88 }
89 89
90 len = i2c_smbus_read_word_data(&sat->i2c, 9); 90 err = i2c_smbus_read_word_data(&sat->i2c, 9);
91 if (len < 0) { 91 if (err < 0) {
92 printk(KERN_ERR "smu_sat_get_sdb_part rd len error\n"); 92 printk(KERN_ERR "smu_sat_get_sdb_part rd len error\n");
93 return NULL; 93 return NULL;
94 } 94 }
95 len = err;
95 if (len == 0) { 96 if (len == 0) {
96 printk(KERN_ERR "smu_sat_get_sdb_part no partition %x\n", id); 97 printk(KERN_ERR "smu_sat_get_sdb_part no partition %x\n", id);
97 return NULL; 98 return NULL;