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

Commit 9717c772 authored by Jacob Keller's avatar Jacob Keller Committed by Jeff Kirsher
Browse files

fm10k: remove unnecessary extra parenthesis around ((~value))

parent 1ad78292
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -133,7 +133,7 @@ static void fm10k_detach_subtask(struct fm10k_intfc *interface)
	/* check the real address space to see if we've recovered */
	hw_addr = READ_ONCE(interface->uc_addr);
	value = readl(hw_addr);
	if ((~value)) {
	if (~value) {
		interface->hw.hw_addr = interface->uc_addr;
		netif_device_attach(netdev);
		interface->flags |= FM10K_FLAG_RESET_REQUESTED;