blob: 12c1c5c28b36c168ae2047b59839f518f4316385 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef _FIREDTV_RC_H
#define _FIREDTV_RC_H
struct firesat;
struct device;
int firesat_register_rc(struct firesat *firesat, struct device *dev);
void firesat_unregister_rc(struct firesat *firesat);
void firesat_handle_rc(struct firesat *firesat, unsigned int code);
#endif /* _FIREDTV_RC_H */
|