mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
74ba9207e1
Based on 1 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license as published by the free software foundation either version 2 of the license or at your option any later version this program is distributed in the hope that it will be useful but without any warranty without even the implied warranty of merchantability or fitness for a particular purpose see the gnu general public license for more details you should have received a copy of the gnu general public license along with this program if not write to the free software foundation inc 675 mass ave cambridge ma 02139 usa extracted by the scancode license scanner the SPDX license identifier GPL-2.0-or-later has been chosen to replace the boilerplate/reference in 441 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Michael Ellerman <mpe@ellerman.id.au> (powerpc) Reviewed-by: Richard Fontana <rfontana@redhat.com> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190520071858.739733335@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
47 lines
968 B
C
47 lines
968 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
CA-driver for TwinHan DST Frontend/Card
|
|
|
|
Copyright (C) 2004, 2005 Manu Abraham (manu@kromtek.com)
|
|
|
|
*/
|
|
|
|
#ifndef _DST_CA_H_
|
|
#define _DST_CA_H_
|
|
|
|
#define RETRIES 5
|
|
|
|
|
|
#define CA_APP_INFO_ENQUIRY 0x9f8020
|
|
#define CA_APP_INFO 0x9f8021
|
|
#define CA_ENTER_MENU 0x9f8022
|
|
#define CA_INFO_ENQUIRY 0x9f8030
|
|
#define CA_INFO 0x9f8031
|
|
#define CA_PMT 0x9f8032
|
|
#define CA_PMT_REPLY 0x9f8033
|
|
|
|
#define CA_CLOSE_MMI 0x9f8800
|
|
#define CA_DISPLAY_CONTROL 0x9f8801
|
|
#define CA_DISPLAY_REPLY 0x9f8802
|
|
#define CA_TEXT_LAST 0x9f8803
|
|
#define CA_TEXT_MORE 0x9f8804
|
|
#define CA_KEYPAD_CONTROL 0x9f8805
|
|
#define CA_KEYPRESS 0x9f8806
|
|
|
|
#define CA_ENQUIRY 0x9f8807
|
|
#define CA_ANSWER 0x9f8808
|
|
#define CA_MENU_LAST 0x9f8809
|
|
#define CA_MENU_MORE 0x9f880a
|
|
#define CA_MENU_ANSWER 0x9f880b
|
|
#define CA_LIST_LAST 0x9f880c
|
|
#define CA_LIST_MORE 0x9f880d
|
|
|
|
|
|
struct dst_ca_private {
|
|
struct dst_state *dst;
|
|
struct dvb_device *dvbdev;
|
|
};
|
|
|
|
|
|
#endif
|