From 36dbe1c733480506aeb0d4c2dc0c999accf3ed23 Mon Sep 17 00:00:00 2001 From: jsg Date: Fri, 8 May 2015 07:25:36 +0000 Subject: [PATCH] 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@ --- sys/dev/isa/ad1848.c | 4 ++-- 1 file 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 -- 2.20.1