aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/scd
diff options
context:
space:
mode:
authorPhilippe Charnier <charnier@FreeBSD.org>2002-08-25 13:23:09 +0000
committerPhilippe Charnier <charnier@FreeBSD.org>2002-08-25 13:23:09 +0000
commit93b0017f88462f9af15368440324aa3be58eb18f (patch)
tree9d932320e38df05718ee72d760a4d0d204431b9b /sys/dev/scd
parent7fed38d0a00297914313d5b57f3fae8ef7d4e627 (diff)
downloadsrc-93b0017f88462f9af15368440324aa3be58eb18f.tar.gz
src-93b0017f88462f9af15368440324aa3be58eb18f.zip
Replace various spelling with FALLTHROUGH which is lint()able
Notes
Notes: svn path=/head/; revision=102412
Diffstat (limited to 'sys/dev/scd')
-rw-r--r--sys/dev/scd/scd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/scd/scd.c b/sys/dev/scd/scd.c
index 4a003d29d2d7..e26d279fbcf2 100644
--- a/sys/dev/scd/scd.c
+++ b/sys/dev/scd/scd.c
@@ -1357,7 +1357,7 @@ send_cmd(u_int unit, u_char cmd, u_int nargs, ...)
switch ((rc = inb(reg)) & 0xf0) {
case 0x20:
rc = inb(reg);
- /* FALL TROUGH */
+ /* FALLTHROUGH */
case 0x50:
XDEBUG(1, ("scd%d: DEBUG: send_cmd: drive_error=0x%x\n", unit, rc));
return -rc;