mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-09 12:17:12 +09:00
dvb: sm1 bringup add one asyncfifo [2/2]
PD#SWPL-5403 Problem: demux add one asyncfifo, need compatile Solution: demux compatile with previous code. Verify: verify at sm1 Change-Id: Iea0b7b5f69d3200062b9e757f2712b98926fb3b9 Signed-off-by: Chuangcheng Peng <chuangcheng.peng@amlogic.com> Signed-off-by: Luan Yuan <luan.yuan@amlogic.com>
This commit is contained in:
committed by
Luke Go
parent
a7a78247ca
commit
969bcb261e
@@ -82,12 +82,26 @@ enum ca_cw_type {
|
||||
CA_CW_AES_EVEN,
|
||||
CA_CW_AES_ODD,
|
||||
CA_CW_AES_EVEN_IV,
|
||||
CA_CW_AES_ODD_IV
|
||||
CA_CW_AES_ODD_IV,
|
||||
CA_CW_DES_EVEN,
|
||||
CA_CW_DES_ODD,
|
||||
CA_CW_SM4_EVEN,
|
||||
CA_CW_SM4_ODD,
|
||||
CA_CW_SM4_EVEN_IV,
|
||||
CA_CW_SM4_ODD_IV,
|
||||
CA_CW_TYPE_MAX
|
||||
};
|
||||
|
||||
enum ca_dsc_mode {
|
||||
CA_DSC_CBC = 1,
|
||||
CA_DSC_ECB,
|
||||
CA_DSC_IDSA
|
||||
};
|
||||
|
||||
struct ca_descr_ex {
|
||||
unsigned int index;
|
||||
enum ca_cw_type type;
|
||||
enum ca_dsc_mode mode;
|
||||
int flags;
|
||||
#define CA_CW_FROM_KL 1
|
||||
unsigned char cw[16];
|
||||
|
||||
Reference in New Issue
Block a user