diff options
author | David Hill <dhill@cvs.openbsd.org> | 2011-07-03 21:11:34 +0000 |
---|---|---|
committer | David Hill <dhill@cvs.openbsd.org> | 2011-07-03 21:11:34 +0000 |
commit | bf1a7e08ac712ab9f9e616b4d7cbe4ef5d9afe52 (patch) | |
tree | 0cd8b1930247a9de51c4516de4bc8b19e14bf7bd | |
parent | b606b564421c3eea0c1409d2875446ff99a3b7ed (diff) |
change void * to a caddr_t
no change in binary
OK claudio@
-rw-r--r-- | sys/dev/ic/pgtvar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/pgtvar.h b/sys/dev/ic/pgtvar.h index fa6fb0067bd..c3c536b329c 100644 --- a/sys/dev/ic/pgtvar.h +++ b/sys/dev/ic/pgtvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pgtvar.h,v 1.13 2010/09/20 07:40:41 deraadt Exp $ */ +/* $OpenBSD: pgtvar.h,v 1.14 2011/07/03 21:11:33 dhill Exp $ */ /* * Copyright (c) 2006 Claudio Jeker <claudio@openbsd.org> @@ -80,7 +80,7 @@ struct pgt_tx_radiotap_hdr { */ struct pgt_desc { TAILQ_ENTRY(pgt_desc) pd_link; - void *pd_mem; + caddr_t pd_mem; bus_addr_t pd_dmaaddr; bus_dmamap_t pd_dmam; bus_dma_segment_t pd_dmas; |