Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f8dc17d2 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "misc: isa1200: amend data type mismatch"

parents 451f0cd4 580b8a11
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -54,7 +54,7 @@ struct isa1200_chip {
	struct clk *pwm_clk;
};

static int isa1200_read_reg(struct i2c_client *client, int reg)
static int isa1200_read_reg(struct i2c_client *client, u8 reg)
{
	int ret;

@@ -65,7 +65,7 @@ static int isa1200_read_reg(struct i2c_client *client, int reg)
	return ret;
}

static int isa1200_write_reg(struct i2c_client *client, int reg, u8 value)
static int isa1200_write_reg(struct i2c_client *client, u8 reg, u8 value)
{
	int ret;