Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 97e81acd authored by Krzysztof Hałasa's avatar Krzysztof Hałasa Committed by Jiri Kosina
Browse files

IXP4xx: remove '1 &&' from a condition check in ixp4xx_restart()



Signed-off-by: default avatarKrzysztof Hałasa <khalasa@piap.pl>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 49457896
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -560,7 +560,7 @@ static void __init ixp4xx_clockevent_init(void)

void ixp4xx_restart(enum reboot_mode mode, const char *cmd)
{
	if ( 1 && mode == REBOOT_SOFT) {
	if (mode == REBOOT_SOFT) {
		/* Jump into ROM at address 0 */
		soft_restart(0);
	} else {