aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/xdma/xdma.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/xdma/xdma.h')
-rw-r--r--sys/dev/xdma/xdma.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/xdma/xdma.h b/sys/dev/xdma/xdma.h
index 97cb4d429ad6..36a773b85f41 100644
--- a/sys/dev/xdma/xdma.h
+++ b/sys/dev/xdma/xdma.h
@@ -84,7 +84,6 @@ struct xchan_buf {
bus_dmamap_t map;
uint32_t nsegs;
uint32_t nsegs_left;
- void *cbuf;
};
struct xdma_request {
@@ -130,7 +129,8 @@ struct xdma_channel {
uint32_t caps;
#define XCHAN_CAP_BUSDMA (1 << 0)
-#define XCHAN_CAP_BUSDMA_NOSEG (1 << 1)
+#define XCHAN_CAP_NOSEG (1 << 1)
+#define XCHAN_CAP_NOBUFS (1 << 2)
/* A real hardware driver channel. */
void *chan;