irda-sa11x0.h 411 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * arch/arm/include/asm/mach/irda.h
  4. *
  5. * Copyright (C) 2004 Russell King.
  6. */
  7. #ifndef __ASM_ARM_MACH_IRDA_H
  8. #define __ASM_ARM_MACH_IRDA_H
  9. struct irda_platform_data {
  10. int (*startup)(struct device *);
  11. void (*shutdown)(struct device *);
  12. int (*set_power)(struct device *, unsigned int state);
  13. void (*set_speed)(struct device *, unsigned int speed);
  14. };
  15. #endif