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

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

drivers/net: remove useless semicolons



switch and while statements don't need semicolons at end of statement

[ Fixup minor conflicts with recent wimax merge... -DaveM ]

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 5113fec0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4824,7 +4824,7 @@ static int cas_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
		break;
	default:
		break;
	};
	}

	mutex_unlock(&cp->pm_mutex);
	return rc;
+3 −3
Original line number Diff line number Diff line
@@ -820,7 +820,7 @@ static struct ehea_cqe *ehea_proc_cqes(struct ehea_port_res *pr, int my_quota)
		quota--;

		cqe = ehea_poll_cq(send_cq);
	};
	}

	ehea_update_feca(send_cq, cqe_counter);
	atomic_add(swqe_av, &pr->swqe_avail);
@@ -3253,7 +3253,7 @@ static int ehea_setup_ports(struct ehea_adapter *adapter)
			ehea_remove_adapter_mr(adapter);

		i++;
	};
	}
	return 0;
}

@@ -3272,7 +3272,7 @@ static struct device_node *ehea_get_eth_dn(struct ehea_adapter *adapter,
		if (dn_log_port_id)
			if (*dn_log_port_id == logical_port_id)
				return eth_dn;
	};
	}

	return NULL;
}
+1 −1
Original line number Diff line number Diff line
@@ -288,7 +288,7 @@ static int eql_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
			return eql_s_master_cfg(dev, ifr->ifr_data);
		default:
			return -EOPNOTSUPP;
	};
	}
}

/* queue->lock must be held */
+1 −1
Original line number Diff line number Diff line
@@ -774,7 +774,7 @@ static void SetBaudRate(__u16 iobase, __u32 rate)
			break;
		default:
			break;
		};
		}
	} else if (IsMIROn(iobase)) {
		value = 0;	// will automatically be fixed in 1.152M
	} else if (IsFIROn(iobase)) {
+1 −1
Original line number Diff line number Diff line
@@ -2835,7 +2835,7 @@ jme_init_one(struct pci_dev *pdev,
	default:
		jme->reg_txcs = TXCS_DEFAULT | TXCS_DMASIZE_512B;
		break;
	};
	}

	/*
	 * Must check before reset_mac_processor
Loading