Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/arm/broadcom IPL_BIO -> IPL_VM



details:   https://anonhg.NetBSD.org/src/rev/324433a5d94a
branches:  trunk
changeset: 332737:324433a5d94a
user:      skrll <skrll%NetBSD.org@localhost>
date:      Tue Oct 07 06:44:38 2014 +0000

description:
IPL_BIO -> IPL_VM

No functional change. No code change... It's the same thing!

diffstat:

 sys/arch/arm/broadcom/bcm2835_spi.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 6b758284f913 -r 324433a5d94a sys/arch/arm/broadcom/bcm2835_spi.c
--- a/sys/arch/arm/broadcom/bcm2835_spi.c       Mon Oct 06 18:30:24 2014 +0000
+++ b/sys/arch/arm/broadcom/bcm2835_spi.c       Tue Oct 07 06:44:38 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bcm2835_spi.c,v 1.1 2013/01/05 20:31:23 jakllsch Exp $ */
+/*     $NetBSD: bcm2835_spi.c,v 1.2 2014/10/07 06:44:38 skrll Exp $    */
 
 /*
  * Copyright (c) 2012 Jonathan A. Kollasch
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bcm2835_spi.c,v 1.1 2013/01/05 20:31:23 jakllsch Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bcm2835_spi.c,v 1.2 2014/10/07 06:44:38 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/device.h>
@@ -109,7 +109,7 @@
        for (u_int pin = 7; pin <= 11; pin++)
                bcm2835gpio_function_select(pin, BCM2835_GPIO_ALT0);
 
-       sc->sc_intrh = bcm2835_intr_establish(aaa->aaa_intr, IPL_BIO,
+       sc->sc_intrh = bcm2835_intr_establish(aaa->aaa_intr, IPL_VM,
            bcmspi_intr, sc);
        if (sc->sc_intrh == NULL) {
                aprint_error_dev(sc->sc_dev, "unable to establish interrupt\n");



Home | Main Index | Thread Index | Old Index