diff options
author | marius <marius@FreeBSD.org> | 2005-06-05 10:16:27 +0000 |
---|---|---|
committer | marius <marius@FreeBSD.org> | 2005-06-05 10:16:27 +0000 |
commit | 720506aed398158b05f2f445d761311a0a5a235c (patch) | |
tree | 1d952ca28cfd0d9c61f4f3e20b0718f391cf1239 /sys/sparc64/fhc/fhc.c | |
parent | 981752ea4e5e11b2d1cc0994971e6f66bb066dd4 (diff) | |
download | FreeBSD-src-720506aed398158b05f2f445d761311a0a5a235c.zip FreeBSD-src-720506aed398158b05f2f445d761311a0a5a235c.tar.gz |
Remove superfluous breaks.
Diffstat (limited to 'sys/sparc64/fhc/fhc.c')
-rw-r--r-- | sys/sparc64/fhc/fhc.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sys/sparc64/fhc/fhc.c b/sys/sparc64/fhc/fhc.c index ed95970..8559040 100644 --- a/sys/sparc64/fhc/fhc.c +++ b/sys/sparc64/fhc/fhc.c @@ -323,7 +323,6 @@ fhc_alloc_resource(device_t bus, device_t child, int type, int *rid, case SYS_RES_IRQ: return (resource_list_alloc(rl, bus, child, type, rid, start, end, count, flags)); - break; case SYS_RES_MEMORY: if (!passthrough) { if (rle == NULL) @@ -353,8 +352,6 @@ fhc_alloc_resource(device_t bus, device_t child, int type, int *rid, } } break; - default: - break; } return (res); } |