rk8xx_poweroff: add parentheses missed in 8b408fc6f2

Fixes:		8b408fc6f2
MFC after:	2 weeks
This commit is contained in:
Andriy Gapon 2024-02-18 18:26:20 +02:00
parent a2ddbe019d
commit a044cf60bd

View file

@ -108,7 +108,7 @@ rk8xx_poweroff(void *arg, int howto)
int error;
uint8_t val;
if (howto & (RB_POWEROFF | RB_POWERCYCLE) == 0)
if ((howto & (RB_POWEROFF | RB_POWERCYCLE)) == 0)
return;
device_printf(sc->dev, "Powering off...\n");