Module Name:    src
Committed By:   jmcneill
Date:           Fri Sep 12 15:41:02 UTC 2014

Modified Files:
        src/sys/arch/arm/broadcom: bcm2835_dmac.c

Log Message:
not sure how this compiles for me, but remove extra * on prop_dictionary_t decl


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/arm/broadcom/bcm2835_dmac.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_dmac.c
diff -u src/sys/arch/arm/broadcom/bcm2835_dmac.c:1.3 src/sys/arch/arm/broadcom/bcm2835_dmac.c:1.4
--- src/sys/arch/arm/broadcom/bcm2835_dmac.c:1.3	Fri Sep 12 15:29:30 2014
+++ src/sys/arch/arm/broadcom/bcm2835_dmac.c	Fri Sep 12 15:41:02 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: bcm2835_dmac.c,v 1.3 2014/09/12 15:29:30 jmcneill Exp $ */
+/* $NetBSD: bcm2835_dmac.c,v 1.4 2014/09/12 15:41:02 jmcneill Exp $ */
 
 /*-
  * Copyright (c) 2014 Jared D. McNeill <jmcne...@invisible.ca>
@@ -29,7 +29,7 @@
 #include "opt_ddb.h"
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bcm2835_dmac.c,v 1.3 2014/09/12 15:29:30 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bcm2835_dmac.c,v 1.4 2014/09/12 15:41:02 jmcneill Exp $");
 
 #include <sys/param.h>
 #include <sys/bus.h>
@@ -109,7 +109,7 @@ static void
 bcm_dmac_attach(device_t parent, device_t self, void *aux)
 {
 	struct bcm_dmac_softc *sc = device_private(self);
-	const prop_dictionary_t *cfg = device_properties(self);
+	const prop_dictionary_t cfg = device_properties(self);
 	struct bcm_dmac_channel *ch;
 	struct amba_attach_args *aaa = aux;
 	uint32_t val;

Reply via email to