From 16017b33d1fad6b6fd295f39b365b33719b42ae9 Mon Sep 17 00:00:00 2001 From: Aaron Campbell Date: Sat, 19 Nov 2005 01:59:38 +0000 Subject: Remove superfluous statement-ending semi-colons. i.e., "return foo;;" should just be "return foo;". Cleaning out some M's in my tree. --- sys/dev/ic/mtd8xx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/dev/ic') diff --git a/sys/dev/ic/mtd8xx.c b/sys/dev/ic/mtd8xx.c index 60473af0b07..02eadfc0dd8 100644 --- a/sys/dev/ic/mtd8xx.c +++ b/sys/dev/ic/mtd8xx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mtd8xx.c,v 1.10 2005/11/07 03:20:00 brad Exp $ */ +/* $OpenBSD: mtd8xx.c,v 1.11 2005/11/19 01:59:37 aaron Exp $ */ /* * Copyright (c) 2003 Oleg Safiullin @@ -295,7 +295,7 @@ mtd_miibus_writereg(struct device *self, int phy, int reg, int val) for (mask = 0x8000; mask; mask >>= 1) { miir &= ~(MIIMGT_MDC | MIIMGT_MDO); if (mask & (u_int32_t)val) - miir |= MIIMGT_MDO;; + miir |= MIIMGT_MDO; CSR_WRITE_4(MTD_MIIMGT, miir); miir |= MIIMGT_MDC; CSR_WRITE_4(MTD_MIIMGT, miir); -- cgit v1.2.3