dma-hsu.h 478 B

123456789101112131415161718192021
  1. /*
  2. * Driver for the High Speed UART DMA
  3. *
  4. * Copyright (C) 2015 Intel Corporation
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. #ifndef _PLATFORM_DATA_DMA_HSU_H
  11. #define _PLATFORM_DATA_DMA_HSU_H
  12. #include <linux/device.h>
  13. struct hsu_dma_slave {
  14. struct device *dma_dev;
  15. int chan_id;
  16. };
  17. #endif /* _PLATFORM_DATA_DMA_HSU_H */