diff options
| author | Rafał Mikrut | 2020-12-08 20:54:40 +0000 |
|---|---|---|
| committer | Petr Štetiar | 2020-12-11 12:48:24 +0000 |
| commit | 848d668427c544d20f8aa3041fa11b4d4adc9bc8 (patch) | |
| tree | 6cda0625549349ea7a58ba39d6b5b3371eff56ba | |
| parent | d82c1912838f262b6f4b9157077f390f5f06b6c4 (diff) | |
| download | openwrt-848d668427c544d20f8aa3041fa11b4d4adc9bc8.tar.gz | |
realtek: Fix self assignment
Cppcheck shows self initialization error, which is an obvious bug.
Basing on logic of similar fragment below I assigned to this variable,
value `RTL838X_LED_GLB_CTRL` which I think is proper.
Signed-off-by: Rafał Mikrut <mikrutrafal@protonmail.com>
| -rw-r--r-- | target/linux/realtek/files-5.4/drivers/gpio/gpio-rtl838x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/realtek/files-5.4/drivers/gpio/gpio-rtl838x.c b/target/linux/realtek/files-5.4/drivers/gpio/gpio-rtl838x.c index 92cf5f765a..8207e4bb73 100644 --- a/target/linux/realtek/files-5.4/drivers/gpio/gpio-rtl838x.c +++ b/target/linux/realtek/files-5.4/drivers/gpio/gpio-rtl838x.c @@ -357,7 +357,7 @@ static int rtl838x_gpio_probe(struct platform_device *pdev) } if (soc_info.family == RTL8380_FAMILY_ID) { - gpios->led_glb_ctrl = gpios->led_glb_ctrl; + gpios->led_glb_ctrl = RTL838X_LED_GLB_CTRL; gpios->led_sw_ctrl = RTL838X_LED_SW_CTRL; gpios->led_sw_p_ctrl = rtl838x_led_sw_p_ctrl; gpios->led_sw_p_en_ctrl = rtl838x_led_sw_p_en_ctrl; |