mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
ca02ab631f
PD#SWPL-151623 Problem: platform app can not access /sys Solution: use ioctl to do that. Verify: Local Change-Id: I107e11acc38ae411c0a344ad2d322338e98509b7 Signed-off-by: Yan.Yan <yan.yan@amlogic.com>
15 lines
314 B
C
15 lines
314 B
C
/* SPDX-License-Identifier: LGPL-2.1+ WITH Linux-syscall-note */
|
|
|
|
/*
|
|
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
|
|
*/
|
|
|
|
#ifndef _DVBCA_EXT_H_
|
|
#define _DVBCA_EXT_H_
|
|
|
|
#define CA_SPEED_UP _IO('o', 136)
|
|
#define CA_SET_START _IO('o', 137)
|
|
#define CA_GET_START _IOR('o', 138, uint8_t)
|
|
|
|
#endif
|