power: supply: sbs-message: fix some code style issues

Use 'unsigned int' and curly braces for 'else'.

Reviewed-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
This commit is contained in:
Wolfram Sang 2017-10-29 00:49:14 +02:00
parent 5e9bee5267
commit 4cf419a2b4

View File

@ -193,7 +193,7 @@ static int sbsm_select(struct i2c_mux_core *muxc, u32 chan)
return ret; return ret;
} }
static int sbsm_gpio_get_value(struct gpio_chip *gc, unsigned off) static int sbsm_gpio_get_value(struct gpio_chip *gc, unsigned int off)
{ {
struct sbsm_data *data = gpiochip_get_data(gc); struct sbsm_data *data = gpiochip_get_data(gc);
int ret; int ret;
@ -209,7 +209,7 @@ static int sbsm_gpio_get_value(struct gpio_chip *gc, unsigned off)
* This needs to be defined or the GPIO lib fails to register the pin. * This needs to be defined or the GPIO lib fails to register the pin.
* But the 'gpio' is always an input. * But the 'gpio' is always an input.
*/ */
static int sbsm_gpio_direction_input(struct gpio_chip *gc, unsigned off) static int sbsm_gpio_direction_input(struct gpio_chip *gc, unsigned int off)
{ {
return 0; return 0;
} }
@ -229,8 +229,9 @@ static int sbsm_do_alert(struct device *dev, void *d)
driver->alert(client, I2C_PROTOCOL_SMBUS_ALERT, 0); driver->alert(client, I2C_PROTOCOL_SMBUS_ALERT, 0);
else else
dev_warn(&client->dev, "no driver alert()!\n"); dev_warn(&client->dev, "no driver alert()!\n");
} else } else {
dev_dbg(&client->dev, "alert with no driver\n"); dev_dbg(&client->dev, "alert with no driver\n");
}
device_unlock(dev); device_unlock(dev);
return -EBUSY; return -EBUSY;