pata_platform.h 442 B

123456789101112131415161718
  1. #ifndef __LINUX_PATA_PLATFORM_H
  2. #define __LINUX_PATA_PLATFORM_H
  3. struct pata_platform_info {
  4. /*
  5. * I/O port shift, for platforms with ports that are
  6. * constantly spaced and need larger than the 1-byte
  7. * spacing used by ata_std_ports().
  8. */
  9. unsigned int ioport_shift;
  10. /*
  11. * Indicate platform specific irq types and initial
  12. * IRQ flags when call request_irq()
  13. */
  14. unsigned int irq_flags;
  15. };
  16. #endif /* __LINUX_PATA_PLATFORM_H */