mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-09 01:28: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
53
fs/exfat/exfat_oal.h
Normal file
53
fs/exfat/exfat_oal.h
Normal file
|
@ -0,0 +1,53 @@
|
|||
/*
|
||||
* Copyright (C) 2012-2013 Samsung Electronics Co., Ltd.
|
||||
*
|
||||
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef _EXFAT_OAL_H
|
||||
#define _EXFAT_OAL_H
|
||||
|
||||
#include "exfat_config.h"
|
||||
#include "exfat_global.h"
|
||||
#include <linux/version.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct {
|
||||
UINT16 sec;
|
||||
UINT16 min;
|
||||
UINT16 hour;
|
||||
UINT16 day;
|
||||
UINT16 mon;
|
||||
UINT16 year;
|
||||
} TIMESTAMP_T;
|
||||
|
||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37)
|
||||
#define DECLARE_MUTEX(m) DEFINE_SEMAPHORE(m)
|
||||
#endif
|
||||
|
||||
INT32 sm_init(struct semaphore *sm);
|
||||
INT32 sm_P(struct semaphore *sm);
|
||||
void sm_V(struct semaphore *sm);
|
||||
|
||||
TIMESTAMP_T *tm_current(TIMESTAMP_T *tm, UINT8 tz_utc);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue