diff options
author | Christopher Pascoe <pascoe@cvs.openbsd.org> | 2007-03-20 07:36:22 +0000 |
---|---|---|
committer | Christopher Pascoe <pascoe@cvs.openbsd.org> | 2007-03-20 07:36:22 +0000 |
commit | a8d9a7b025691e44cacae7a1961fc0b0b1ae6fed (patch) | |
tree | c5a31324a9fb4ffde7363b3ec7f872d0f27cb6bf /sys/dev/pci/ahci.c | |
parent | 3d01ac57d5b813635d3f1c3cd9d77bc0734e11c6 (diff) |
Minor style fixup.
Diffstat (limited to 'sys/dev/pci/ahci.c')
-rw-r--r-- | sys/dev/pci/ahci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/ahci.c b/sys/dev/pci/ahci.c index 68daf8830f9..1c1df5f3175 100644 --- a/sys/dev/pci/ahci.c +++ b/sys/dev/pci/ahci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ahci.c,v 1.82 2007/03/20 07:09:42 pascoe Exp $ */ +/* $OpenBSD: ahci.c,v 1.83 2007/03/20 07:36:21 pascoe Exp $ */ /* * Copyright (c) 2006 David Gwynne <dlg@openbsd.org> @@ -1614,9 +1614,9 @@ ahci_ata_probe(void *xsc, int port) sig = ahci_pread(ap, AHCI_PREG_SIG); if ((sig & 0xffff0000) == 0xeb140000) - return ATA_PORT_T_ATAPI; + return (ATA_PORT_T_ATAPI); else - return ATA_PORT_T_DISK; + return (ATA_PORT_T_DISK); } struct ata_xfer * |