From 0e99a5a76f0d4bda92b1a7bb20bf56f27c050f89 Mon Sep 17 00:00:00 2001 From: brad Date: Sun, 10 Aug 2008 00:18:35 +0000 Subject: [PATCH] Style fixes and use of tabs for the DRM bits. ok oga@ --- sys/dev/pci/vga_pci.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/sys/dev/pci/vga_pci.c b/sys/dev/pci/vga_pci.c index d006c9529c1..f8cc21198b9 100644 --- a/sys/dev/pci/vga_pci.c +++ b/sys/dev/pci/vga_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vga_pci.c,v 1.35 2008/08/02 15:50:34 oga Exp $ */ +/* $OpenBSD: vga_pci.c,v 1.36 2008/08/10 00:18:35 brad Exp $ */ /* $NetBSD: vga_pci.c,v 1.3 1998/06/08 06:55:58 thorpej Exp $ */ /* @@ -247,8 +247,8 @@ drmsubmatch(struct device *parent, void *match, void *aux) /* is this a *drm device? */ len = strlen(cd->cd_name); - sm = cd->cd_name + len -3; - if (strncmp(sm,"drm",3) == 0) + sm = cd->cd_name + len - 3; + if (strncmp(sm, "drm", 3) == 0) return ((*cf->cf_attach->ca_match)(parent, match, aux)); return (0); @@ -257,9 +257,9 @@ drmsubmatch(struct device *parent, void *match, void *aux) int vga_drm_print(void *aux, const char *pnp) { - if (pnp) - printf("drm at %s", pnp); - return (UNSUPP); + if (pnp) + printf("drm at %s", pnp); + return (UNSUPP); } #endif -- 2.20.1