Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  *  arch/arm/include/asm/mach/irda.h
0004  *
0005  *  Copyright (C) 2004 Russell King.
0006  */
0007 #ifndef __ASM_ARM_MACH_IRDA_H
0008 #define __ASM_ARM_MACH_IRDA_H
0009 
0010 struct irda_platform_data {
0011     int (*startup)(struct device *);
0012     void (*shutdown)(struct device *);
0013     int (*set_power)(struct device *, unsigned int state);
0014     void (*set_speed)(struct device *, unsigned int speed);
0015 };
0016 
0017 #endif