diff options
author | phk <phk@FreeBSD.org> | 2003-05-31 20:28:21 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-05-31 20:28:21 +0000 |
commit | e8c1d97f209fdc1266d67f8f5ec3d76ae575750e (patch) | |
tree | 39861aea5ba76b6c5f7ee8938c3f398552e97a19 /sys/dev/vx | |
parent | 672138153bc94b3d1a35c33abc8166c70c0a5f1a (diff) | |
download | FreeBSD-src-e8c1d97f209fdc1266d67f8f5ec3d76ae575750e.zip FreeBSD-src-e8c1d97f209fdc1266d67f8f5ec3d76ae575750e.tar.gz |
Remove break after return
Found by: FlexeLint
Diffstat (limited to 'sys/dev/vx')
-rw-r--r-- | sys/dev/vx/if_vx_eisa.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/dev/vx/if_vx_eisa.c b/sys/dev/vx/if_vx_eisa.c index c51c2ef..bfe9031 100644 --- a/sys/dev/vx/if_vx_eisa.c +++ b/sys/dev/vx/if_vx_eisa.c @@ -66,16 +66,12 @@ vx_match(eisa_id_t type) switch (type) { case EISA_DEVICE_ID_3COM_3C592: return "3Com 3C592 Network Adapter"; - break; case EISA_DEVICE_ID_3COM_3C597_TX: return "3Com 3C597-TX Network Adapter"; - break; case EISA_DEVICE_ID_3COM_3C597_T4: return "3Com 3C597-T4 Network Adapter"; - break; case EISA_DEVICE_ID_3COM_3C597_MII: return "3Com 3C597-MII Network Adapter"; - break; default: break; } |