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 not sure how this compiles for me, but...



details:   https://anonhg.NetBSD.org/src/rev/da0ecb50fed4
branches:  trunk
changeset: 332228:da0ecb50fed4
user:      jmcneill <jmcneill%NetBSD.org@localhost>
date:      Fri Sep 12 15:41:02 2014 +0000

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

diffstat:

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

diffs (27 lines):

diff -r a05e09dee0ef -r da0ecb50fed4 sys/arch/arm/broadcom/bcm2835_dmac.c
--- a/sys/arch/arm/broadcom/bcm2835_dmac.c      Fri Sep 12 15:29:30 2014 +0000
+++ b/sys/arch/arm/broadcom/bcm2835_dmac.c      Fri Sep 12 15:41:02 2014 +0000
@@ -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 <jmcneill%invisible.ca@localhost>
@@ -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 @@
 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;



Home | Main Index | Thread Index | Old Index