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

Commit 6403eab1 authored by Joe Perches's avatar Joe Perches Committed by David S. Miller
Browse files

drivers/net: Remove unnecessary semicolons



Semicolons are not necessary after switch/while/for/if braces
so remove them.

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f81c6224
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1958,7 +1958,7 @@ static int __devinit amd8111e_probe_one(struct pci_dev *pdev,
						 IPG_CONVERGE_JIFFIES;
		lp->ipg_data.ipg = DEFAULT_IPG;
		lp->ipg_data.ipg_state = CSTATE;
	};
	}

	/*  display driver and device information */

+1 −1
Original line number Diff line number Diff line
@@ -3704,7 +3704,7 @@ static int __devinit init_one(struct pci_dev *pdev,
	if (err) {
		dev_warn(&pdev->dev, "only %d net devices registered\n", i);
		err = 0;
	};
	}

	if (cxgb4_debugfs_root) {
		adapter->debugfs_root = debugfs_create_dir(pci_name(pdev),
+1 −1
Original line number Diff line number Diff line
@@ -1560,7 +1560,7 @@ static void enic_notify_timer_start(struct enic *enic)
	default:
		/* Using intr for notification for INTx/MSI-X */
		break;
	};
	}
}

/* rtnl lock is held, process context */
+1 −1
Original line number Diff line number Diff line
@@ -210,7 +210,7 @@ static void DisableDmaChannel(unsigned int channel)
		break;
	default:
		break;
	};			//Switch
	}
}

static unsigned char ReadLPCReg(int iRegNum)
+2 −2
Original line number Diff line number Diff line
@@ -538,7 +538,7 @@ static void veth_handle_ack(struct veth_lpevent *event)
	default:
		veth_error("Unknown ack type %d from LPAR %d.\n",
				event->base_event.xSubtype, rlp);
	};
	}
}

static void veth_handle_int(struct veth_lpevent *event)
@@ -584,7 +584,7 @@ static void veth_handle_int(struct veth_lpevent *event)
	default:
		veth_error("Unknown interrupt type %d from LPAR %d.\n",
				event->base_event.xSubtype, rlp);
	};
	}
}

static void veth_handle_event(struct HvLpEvent *event)
Loading