mirror of
https://github.com/hardkernel/linux.git
synced 2026-04-10 06:58:08 +09:00
Change-Id: I754250669891307b0deab2bdab1bd01512713f79 Signed-off-by: Tao Huang <huangtao@rock-chips.com>
15 lines
398 B
C
15 lines
398 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#include <linux/types.h>
|
|
#include <linux/ioctl.h>
|
|
|
|
#define STE_IOCTL_MAGIC 'd'
|
|
#define STE_IOCTL_GET_ACK \
|
|
_IOR(STE_IOCTL_MAGIC, 1, int *)
|
|
#define STE_IOCTL_EN_APSEND_ACK \
|
|
_IOW(STE_IOCTL_MAGIC, 2, int *)
|
|
#define STE_IOCTL_POWER_ON \
|
|
_IOW(STE_IOCTL_MAGIC, 3, int *)
|
|
#define STE_IOCTL_POWER_OFF \
|
|
_IOW(STE_IOCTL_MAGIC, 4, int *)
|
|
|
|
#define STE_NAME "STE" |