2012-06-27 06:50:37 +02:00
|
|
|
/*
|
|
|
|
* Support for dma_addr_t typed properties
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 David Gibson, IBM Corporation.
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
2019-06-04 20:16:18 +02:00
|
|
|
|
|
|
|
#ifndef HW_QDEV_DMA_H
|
|
|
|
#define HW_QDEV_DMA_H
|
|
|
|
|
2012-06-27 06:50:37 +02:00
|
|
|
#define DEFINE_PROP_DMAADDR(_n, _s, _f, _d) \
|
2014-02-08 11:01:53 +01:00
|
|
|
DEFINE_PROP_UINT64(_n, _s, _f, _d)
|
2019-06-04 20:16:18 +02:00
|
|
|
|
|
|
|
#endif
|