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

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

sparc: 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 9eeb0898
Loading
Loading
Loading
Loading
+4 −4
Original line number Original line Diff line number Diff line
@@ -138,7 +138,7 @@ static unsigned char sun_82072_fd_inb(int port)
		return sun_fdc->data_82072;
		return sun_fdc->data_82072;
	case 7: /* FD_DIR */
	case 7: /* FD_DIR */
		return sun_read_dir();
		return sun_read_dir();
	};
	}
	panic("sun_82072_fd_inb: How did I get here?");
	panic("sun_82072_fd_inb: How did I get here?");
}
}


@@ -161,7 +161,7 @@ static void sun_82072_fd_outb(unsigned char value, int port)
	case 4: /* FD_STATUS */
	case 4: /* FD_STATUS */
		sun_fdc->status_82072 = value;
		sun_fdc->status_82072 = value;
		break;
		break;
	};
	}
	return;
	return;
}
}


@@ -186,7 +186,7 @@ static unsigned char sun_82077_fd_inb(int port)
		return sun_fdc->data_82077;
		return sun_fdc->data_82077;
	case 7: /* FD_DIR */
	case 7: /* FD_DIR */
		return sun_read_dir();
		return sun_read_dir();
	};
	}
	panic("sun_82077_fd_inb: How did I get here?");
	panic("sun_82077_fd_inb: How did I get here?");
}
}


@@ -212,7 +212,7 @@ static void sun_82077_fd_outb(unsigned char value, int port)
	case 3: /* FD_TDR */
	case 3: /* FD_TDR */
		sun_fdc->tapectl_82077 = value;
		sun_fdc->tapectl_82077 = value;
		break;
		break;
	};
	}
	return;
	return;
}
}


+2 −2
Original line number Original line Diff line number Diff line
@@ -111,7 +111,7 @@ static unsigned char sun_82077_fd_inb(unsigned long port)
	case 7: /* FD_DIR */
	case 7: /* FD_DIR */
		/* XXX: Is DCL on 0x80 in sun4m? */
		/* XXX: Is DCL on 0x80 in sun4m? */
		return sbus_readb(&sun_fdc->dir_82077);
		return sbus_readb(&sun_fdc->dir_82077);
	};
	}
	panic("sun_82072_fd_inb: How did I get here?");
	panic("sun_82072_fd_inb: How did I get here?");
}
}


@@ -135,7 +135,7 @@ static void sun_82077_fd_outb(unsigned char value, unsigned long port)
	case 4: /* FD_STATUS */
	case 4: /* FD_STATUS */
		sbus_writeb(value, &sun_fdc->status_82077);
		sbus_writeb(value, &sun_fdc->status_82077);
		break;
		break;
	};
	}
	return;
	return;
}
}


+1 −1
Original line number Original line Diff line number Diff line
@@ -220,7 +220,7 @@ static inline unsigned long __xchg(unsigned long x, __volatile__ void * ptr, int
	switch (size) {
	switch (size) {
	case 4:
	case 4:
		return xchg_u32(ptr, x);
		return xchg_u32(ptr, x);
	};
	}
	__xchg_called_with_bad_pointer();
	__xchg_called_with_bad_pointer();
	return x;
	return x;
}
}
+1 −1
Original line number Original line Diff line number Diff line
@@ -234,7 +234,7 @@ static inline unsigned long __xchg(unsigned long x, __volatile__ void * ptr,
		return xchg32(ptr, x);
		return xchg32(ptr, x);
	case 8:
	case 8:
		return xchg64(ptr, x);
		return xchg64(ptr, x);
	};
	}
	__xchg_called_with_bad_pointer();
	__xchg_called_with_bad_pointer();
	return x;
	return x;
}
}
+1 −1
Original line number Original line Diff line number Diff line
@@ -123,7 +123,7 @@ static long apc_ioctl(struct file *f, unsigned int cmd, unsigned long __arg)


	default:
	default:
		return -EINVAL;
		return -EINVAL;
	};
	}


	return 0;
	return 0;
}
}
Loading