Skip to content

Commit 65e8b64

Browse files
xyprontrini
authored andcommitted
board: gateworks: gw_ventana: fix building with GCC 12.2
Building with GCC 12.2 results in an error board/gateworks/gw_ventana/gw_ventana.c:636:68: error: the comparison will always evaluate as 'true' for the address of 'pwm_padmux' will never be NULL [-Werror=address] 636 | } else if (hwconfig_subarg_cmp(arg, "mode", "pwm") && | ^~ Remove the superfluous check. Signed-off-by: Heinrich Schuchardt <[email protected]> Reviewed-By: Tim Harvey <[email protected]> Reviewed-by: Fabio Estevam <[email protected]>
1 parent 9259bd1 commit 65e8b64

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

board/gateworks/gw_ventana/gw_ventana.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -633,8 +633,7 @@ void setup_board_gpio(int board, struct ventana_board_info *info)
633633
ctrl);
634634
gpio_requestf(cfg->gpio_param, "dio%d", i);
635635
gpio_direction_input(cfg->gpio_param);
636-
} else if (hwconfig_subarg_cmp(arg, "mode", "pwm") &&
637-
cfg->pwm_padmux) {
636+
} else if (hwconfig_subarg_cmp(arg, "mode", "pwm")) {
638637
if (!cfg->pwm_param) {
639638
printf("DIO%d: Error: pwm config invalid\n",
640639
i);

0 commit comments

Comments
 (0)