Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/b98bfeb6674bd33effe9e093f071e7eeb3174f2e You should set ROOT_URL correctly, otherwise the web may not work correctly.

hwmon: lm63: Use ARRAY_SIZE at appropriate place

Signed-off-by: Axel Lin <axel.lin@ingics.com>
master
Axel Lin 12 years ago committed by Tom Rini
parent 9935175f50
commit b98bfeb667
  1. 3
      drivers/hwmon/lm63.c

@ -133,8 +133,7 @@ int dtt_init_one(int sensor)
/*
* Setup PWM Lookup-Table
*/
for (i = 0; i < sizeof(pwm_lookup) / sizeof(struct pwm_lookup_entry);
i++) {
for (i = 0; i < ARRAY_SIZE(pwm_lookup); i++) {
int address = DTT_PWM_LOOKUP_BASE + 2 * i;
val = pwm_lookup[i].temp;
if (is_lm64(sensor))

Loading…
Cancel
Save