linux/include/linux/platform_data/irda-sa11x0.h
<<
>>
Prefs
   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
  10struct irda_platform_data {
  11        int (*startup)(struct device *);
  12        void (*shutdown)(struct device *);
  13        int (*set_power)(struct device *, unsigned int state);
  14        void (*set_speed)(struct device *, unsigned int speed);
  15};
  16
  17#endif
  18