uio_dmem_genirq.h 800 B

1234567891011121314151617181920212223242526
  1. /*
  2. * include/linux/platform_data/uio_dmem_genirq.h
  3. *
  4. * Copyright (C) 2012 Damian Hobson-Garcia
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License as
  8. * published by the Free Software Foundation version 2.
  9. *
  10. * This program is distributed "as is" WITHOUT ANY WARRANTY of any
  11. * kind, whether express or implied; without even the implied warranty
  12. * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. */
  15. #ifndef _UIO_DMEM_GENIRQ_H
  16. #define _UIO_DMEM_GENIRQ_H
  17. #include <linux/uio_driver.h>
  18. struct uio_dmem_genirq_pdata {
  19. struct uio_info uioinfo;
  20. unsigned int *dynamic_region_sizes;
  21. unsigned int num_dynamic_regions;
  22. };
  23. #endif /* _UIO_DMEM_GENIRQ_H */