mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-08 17:18:05 -04:00
Fixed MTP to work with TWRP
This commit is contained in:
commit
f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions
25
include/media/ak881x.h
Normal file
25
include/media/ak881x.h
Normal file
|
@ -0,0 +1,25 @@
|
|||
/*
|
||||
* Header for AK8813 / AK8814 TV-ecoders from Asahi Kasei Microsystems Co., Ltd. (AKM)
|
||||
*
|
||||
* Copyright (C) 2010, Guennadi Liakhovetski <g.liakhovetski@gmx.de>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
* published by the Free Software Foundation.
|
||||
*/
|
||||
|
||||
#ifndef AK881X_H
|
||||
#define AK881X_H
|
||||
|
||||
#define AK881X_IF_MODE_MASK (3 << 0)
|
||||
#define AK881X_IF_MODE_BT656 (0 << 0)
|
||||
#define AK881X_IF_MODE_MASTER (1 << 0)
|
||||
#define AK881X_IF_MODE_SLAVE (2 << 0)
|
||||
#define AK881X_FIELD (1 << 2)
|
||||
#define AK881X_COMPONENT (1 << 3)
|
||||
|
||||
struct ak881x_pdata {
|
||||
unsigned long flags;
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue