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
330 B
18 lines
330 B
/*
|
|
* (C) Copyright 2017 Rockchip Electronics Co., Ltd
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _RC_H_
|
|
#define _RC_H_
|
|
|
|
struct dm_rc_ops {
|
|
int (*get_keycode)(struct udevice *dev);
|
|
int (*get_repeat)(struct udevice *dev);
|
|
};
|
|
|
|
int rc_get_keycode(struct udevice *dev);
|
|
int rc_get_repeat(struct udevice *dev);
|
|
|
|
#endif
|
|
|