You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
352 B
18 lines
352 B
19 years ago
|
#ifndef ASMARM_ARCH_IRDA_H
|
||
|
#define ASMARM_ARCH_IRDA_H
|
||
|
|
||
|
/* board specific transceiver capabilities */
|
||
|
|
||
|
#define IR_OFF 1
|
||
|
#define IR_SIRMODE 2
|
||
|
#define IR_FIRMODE 4
|
||
|
|
||
|
struct pxaficp_platform_data {
|
||
|
int transceiver_cap;
|
||
|
void (*transceiver_mode)(struct device *dev, int mode);
|
||
|
};
|
||
|
|
||
|
extern void pxa_set_ficp_info(struct pxaficp_platform_data *info);
|
||
|
|
||
|
#endif
|