annoying spaces getting in the way
authorderaadt <deraadt@openbsd.org>
Tue, 27 Jul 2010 06:12:50 +0000 (06:12 +0000)
committerderaadt <deraadt@openbsd.org>
Tue, 27 Jul 2010 06:12:50 +0000 (06:12 +0000)
sys/dev/acpi/acpiec.c
sys/dev/acpi/acpisony.c
sys/dev/acpi/acpivideo.c

index 3467947..ae692ea 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: acpiec.c,v 1.35 2010/07/27 05:17:36 jordan Exp $ */
+/* $OpenBSD: acpiec.c,v 1.36 2010/07/27 06:12:50 deraadt Exp $ */
 /*
  * Copyright (c) 2006 Can Erkin Acar <canacar@openbsd.org>
  *
@@ -245,7 +245,7 @@ acpiec_match(struct device *parent, void *match, void *aux)
 {
        struct acpi_attach_args *aa = aux;
        struct cfdata           *cf = match;
-       struct acpi_ecdt        *ecdt = aa->aaa_table;
+       struct acpi_ecdt        *ecdt = aa->aaa_table;
 
        /* Check for early ECDT table attach */
        if (ecdt && !memcmp(ecdt->hdr.signature, ECDT_SIG, sizeof(ECDT_SIG) - 1))
index a1757b1..627853f 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: acpisony.c,v 1.1 2010/07/26 11:29:23 pirofti Exp $ */
+/* $OpenBSD: acpisony.c,v 1.2 2010/07/27 06:12:50 deraadt Exp $ */
 /*
  * Copyright (c) 2010 Paul Irofti <pirofti@openbsd.org>
  *
@@ -254,7 +254,7 @@ acpisony_find_offset(struct acpisony_softc *sc, int key)
        arg.type = AML_OBJTYPE_INTEGER;
 
        for (arg.v_integer = 0x20; arg.v_integer < 0x30; arg.v_integer++) {
-               aml_evalname(sc->sc_acpi, sc->sc_devnode, "SN00", 1, &arg, &res);       
+               aml_evalname(sc->sc_acpi, sc->sc_devnode, "SN00", 1, &arg, &res);
                val = aml_val2int(&res);
                aml_freevalue(&res);
                if (val == key) {
@@ -274,7 +274,7 @@ acpisony_set_hotkey(struct acpisony_softc *sc, int key, int val)
 
        bzero(&arg, sizeof(arg));
        arg.type = AML_OBJTYPE_INTEGER;
-       
+
        off = acpisony_find_offset(sc, key);
        DPRINTF(("off = %X\n", off));
        if (off < 0)
index b101a2e..149139f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: acpivideo.c,v 1.6 2010/07/26 17:46:29 kettenis Exp $  */
+/*     $OpenBSD: acpivideo.c,v 1.7 2010/07/27 06:12:50 deraadt Exp $   */
 /*
  * Copyright (c) 2008 Federico G. Schwindt <fgsch@openbsd.org>
  * Copyright (c) 2009 Paul Irofti <pirofti@openbsd.org>
@@ -177,7 +177,7 @@ acpi_foundvout(struct aml_node *node, void *arg)
                av.aaa.aaa_node = node->parent;
                av.aaa.aaa_name = "acpivout";
                av.dod = sc->sc_dod[i];
-               /* 
+               /*
                 *  Make sure we don't attach twice if both _BCL and
                 * _DCS methods are found by zeroing the DOD address.
                 */
@@ -220,7 +220,7 @@ acpivideo_get_dod(struct acpivideo_softc * sc)
                aml_freevalue(&res);
                return;
        }
-       sc->sc_dod = malloc(sc->sc_dod_len * sizeof(int), M_DEVBUF, 
+       sc->sc_dod = malloc(sc->sc_dod_len * sizeof(int), M_DEVBUF,
            M_WAITOK|M_ZERO);
        if (sc->sc_dod == NULL) {
                aml_freevalue(&res);