|
|
@@ -1257,9 +1257,9 @@ static void rocker_port_set_enable(struct rocker_port *rocker_port, bool enable)
|
|
|
u64 val = rocker_read64(rocker_port->rocker, PORT_PHYS_ENABLE);
|
|
|
|
|
|
if (enable)
|
|
|
- val |= 1 << rocker_port->lport;
|
|
|
+ val |= 1ULL << rocker_port->lport;
|
|
|
else
|
|
|
- val &= ~(1 << rocker_port->lport);
|
|
|
+ val &= ~(1ULL << rocker_port->lport);
|
|
|
rocker_write64(rocker_port->rocker, PORT_PHYS_ENABLE, val);
|
|
|
}
|
|
|
|