mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-24 09:13:20 -05:00
pinctrl-sx150x: Replace magic number in sx150x_init_hw
Tested-by: Neil Armstrong <narmstrong@baylibre.com> Acked-by: Neil Armstrong <narmstrong@baylibre.com> Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
978ac0335d
commit
7d68a79acf
1 changed files with 4 additions and 1 deletions
|
@ -43,6 +43,9 @@ enum {
|
|||
SX150X_456,
|
||||
SX150X_789,
|
||||
};
|
||||
enum {
|
||||
SX150X_789_REG_MISC_AUTOCLEAR_OFF = 1 << 0,
|
||||
};
|
||||
|
||||
struct sx150x_123_pri {
|
||||
u8 reg_pld_mode;
|
||||
|
@ -935,7 +938,7 @@ static int sx150x_init_hw(struct sx150x_pinctrl *pctl)
|
|||
if (pctl->data->model == SX150X_789)
|
||||
err = sx150x_i2c_write(pctl->client,
|
||||
pctl->data->pri.x789.reg_misc,
|
||||
0x01);
|
||||
SX150X_789_REG_MISC_AUTOCLEAR_OFF);
|
||||
else if (pctl->data->model == SX150X_456)
|
||||
err = sx150x_i2c_write(pctl->client,
|
||||
pctl->data->pri.x456.reg_advance,
|
||||
|
|
Loading…
Add table
Reference in a new issue