blob: d3e14727d3dd1b97d422a0e6ed3525cc2e06feda (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef _FIREDTV_RC_H
#define _FIREDTV_RC_H
struct firedtv;
struct device;
int fdtv_register_rc(struct firedtv *fdtv, struct device *dev);
void fdtv_unregister_rc(struct firedtv *fdtv);
void fdtv_handle_rc(struct firedtv *fdtv, unsigned int code);
#endif /* _FIREDTV_RC_H */
|