Module Name: src Committed By: skrll Date: Tue Oct 7 06:44:38 UTC 2014
Modified Files: src/sys/arch/arm/broadcom: bcm2835_spi.c Log Message: IPL_BIO -> IPL_VM No functional change. No code change... It's the same thing! To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/sys/arch/arm/broadcom/bcm2835_spi.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/arm/broadcom/bcm2835_spi.c diff -u src/sys/arch/arm/broadcom/bcm2835_spi.c:1.1 src/sys/arch/arm/broadcom/bcm2835_spi.c:1.2 --- src/sys/arch/arm/broadcom/bcm2835_spi.c:1.1 Sat Jan 5 20:31:23 2013 +++ src/sys/arch/arm/broadcom/bcm2835_spi.c Tue Oct 7 06:44:38 2014 @@ -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 @@ bcmspi_attach(device_t parent, device_t 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");