mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 17:01:14 +00:00
7d7aa2fd92
This change makes the names of Broadcom targets consistent by using the common notation based on SoC/CPU ID (which is used internally anyway), bcmXXXX instead of brcmXXXX. This is even used for target TITLE in make menuconfig already, only the short target name used brcm so far. Despite, since subtargets range from bcm2708 to bcm2711, it seems appropriate to use bcm27xx instead of bcm2708 (again, as already done for BOARDNAME). This also renames the packages brcm2708-userland and brcm2708-gpu-fw. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de> Acked-by: Álvaro Fernández Rojas <noltari@gmail.com>
22 lines
717 B
Diff
22 lines
717 B
Diff
From 633c64173636b2f6acebfddb3d2b69c92bbbcd07 Mon Sep 17 00:00:00 2001
|
|
From: Serge Schneider <serge@raspberrypi.org>
|
|
Date: Thu, 31 Oct 2019 13:37:16 +0000
|
|
Subject: [PATCH] rpi-poe-fan: fix def_pwm1 writes
|
|
|
|
Signed-off-by: Serge Schneider <serge@raspberrypi.org>
|
|
---
|
|
drivers/hwmon/rpi-poe-fan.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/drivers/hwmon/rpi-poe-fan.c
|
|
+++ b/drivers/hwmon/rpi-poe-fan.c
|
|
@@ -110,7 +110,7 @@ static int __set_def_pwm(struct rpi_poe
|
|
if (ctx->def_pwm_value == def_pwm)
|
|
goto exit_set_def_pwm_err;
|
|
|
|
- ret = write_reg(ctx->fw, POE_CUR_PWM, &def_pwm);
|
|
+ ret = write_reg(ctx->fw, POE_DEF_PWM, &def_pwm);
|
|
if (!ret)
|
|
ctx->def_pwm_value = def_pwm;
|
|
exit_set_def_pwm_err:
|