diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2016-02-03 19:53:55 +0100 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2016-02-03 19:53:55 +0100 |
commit | 333fe52eb3c7876cfe668dfe0445d34c46989d73 (patch) | |
tree | 69a284f2572d39d5c6bd8a873359bf7795a7afde /dma/ipe.h | |
parent | 817906fdd1c4509cb4b79160bb0d9ff72db7a604 (diff) | |
download | pcitool-333fe52eb3c7876cfe668dfe0445d34c46989d73.tar.gz pcitool-333fe52eb3c7876cfe668dfe0445d34c46989d73.tar.bz2 pcitool-333fe52eb3c7876cfe668dfe0445d34c46989d73.tar.xz pcitool-333fe52eb3c7876cfe668dfe0445d34c46989d73.zip |
Keep printf's happy
Diffstat (limited to 'dma/ipe.h')
-rw-r--r-- | dma/ipe.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -5,10 +5,10 @@ #include "pcilib.h" #include "version.h" -#define IPEDMA_PAGE_SIZE 4096 /**< page size */ -#define IPEDMA_DMA_PAGES 1024 /**< number of DMA pages in the ring buffer to allocate */ +#define IPEDMA_PAGE_SIZE 4096l /**< page size */ +#define IPEDMA_DMA_PAGES 1024l /**< number of DMA pages in the ring buffer to allocate */ -#define IPEDMA_DMA_TIMEOUT 100000 /**< us, overrides PCILIB_DMA_TIMEOUT (actual hardware timeout is 50ms according to Lorenzo) */ +#define IPEDMA_DMA_TIMEOUT 100000l /**< us, overrides PCILIB_DMA_TIMEOUT (actual hardware timeout is 50ms according to Lorenzo) */ pcilib_dma_context_t *dma_ipe_init(pcilib_t *ctx, const char *model, const void *arg); void dma_ipe_free(pcilib_dma_context_t *vctx); |