From e336e1d48a0e7ba819847d0dd7cdb0166ce2d82a Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Sat, 1 May 2004 18:42:14 +0000 Subject: [PATCH] Reduce differences with cy_pci.c: add a description of this file, and don't use too many tabs in declarations. Attempt to complete KNFization of this file (1 more indentation fix). --- sys/dev/cy/cy_isa.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/sys/dev/cy/cy_isa.c b/sys/dev/cy/cy_isa.c index 9a38d1ebc0a3..495b0744a35a 100644 --- a/sys/dev/cy/cy_isa.c +++ b/sys/dev/cy/cy_isa.c @@ -28,6 +28,10 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +/* + * Cyclades Y ISA serial interface driver + */ + #include __FBSDID("$FreeBSD$"); @@ -45,8 +49,8 @@ __FBSDID("$FreeBSD$"); #include #include -static int cy_isa_attach(device_t dev); -static int cy_isa_probe(device_t dev); +static int cy_isa_attach(device_t dev); +static int cy_isa_probe(device_t dev); static device_method_t cy_isa_methods[] = { /* Device interface. */ @@ -85,7 +89,7 @@ cy_isa_probe(device_t dev) /* Cyclom-16Y hardware reset (Cyclom-8Ys don't care) */ cy_inb(iobase, CY16_RESET, 0); /* XXX? */ - DELAY(500); /* wait for the board to get its act together */ + DELAY(500); /* wait for the board to get its act together */ /* this is needed to get the board out of reset */ cy_outb(iobase, CY_CLEAR_INTR, 0, 0);