diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-05-08 07:25:37 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-05-08 07:25:37 +0000 |
commit | 46654c67dcf4d0378cc2137f4f8ed3b3507b6595 (patch) | |
tree | cf9f5e3fe4f49d76c2f98c23badf3392959a46e8 /sys/dev/isa | |
parent | e7f58012b0ae0461c8a08813658ea5c2fe7f3d8e (diff) |
Fix the indentation. While originally I thought this was an if statement
with missing braces ratchov checked the specs to see the current
behaviour is correct, just poorly formatted.
ok ratchov@
Diffstat (limited to 'sys/dev/isa')
-rw-r--r-- | sys/dev/isa/ad1848.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/ad1848.c b/sys/dev/isa/ad1848.c index 96a23c45e6c..50694c5c9ba 100644 --- a/sys/dev/isa/ad1848.c +++ b/sys/dev/isa/ad1848.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ad1848.c,v 1.40 2014/09/14 14:17:25 jsg Exp $ */ +/* $OpenBSD: ad1848.c,v 1.41 2015/05/08 07:25:36 jsg Exp $ */ /* $NetBSD: ad1848.c,v 1.45 1998/01/30 02:02:38 augustss Exp $ */ /* @@ -1274,7 +1274,7 @@ ad1848_reset(struct ad1848_softc *sc) /* Clear interrupt status */ if (sc->mode == 2) - ad_write(sc, CS_IRQ_STATUS, 0); + ad_write(sc, CS_IRQ_STATUS, 0); ADWRITE(sc, AD1848_STATUS, 0); #ifdef AUDIO_DEBUG |