瀏覽代碼

usb: phy: twl6030-usb: signedness bug in twl6030_readb()

"ret" needs to be signed for the error handling to work.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Dan Carpenter 11 年之前
父節點
當前提交
0b55149033
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      drivers/usb/phy/phy-twl6030-usb.c

+ 2 - 1
drivers/usb/phy/phy-twl6030-usb.c

@@ -127,7 +127,8 @@ static inline int twl6030_writeb(struct twl6030_usb *twl, u8 module,
 
 static inline u8 twl6030_readb(struct twl6030_usb *twl, u8 module, u8 address)
 {
-	u8 data, ret = 0;
+	u8 data;
+	int ret;
 
 	ret = twl_i2c_read_u8(module, &data, address);
 	if (ret >= 0)