mirror of
https://github.com/MiSTer-devel/Linux-Kernel_MiSTer.git
synced 2026-05-17 03:03:57 +00:00
exfat: remove exfat_config.h messing kernel config.
This commit is contained in:
@@ -37,7 +37,6 @@
|
||||
#include <linux/init.h>
|
||||
|
||||
#include "exfat_version.h"
|
||||
#include "exfat_config.h"
|
||||
#include "exfat_data.h"
|
||||
#include "exfat_oal.h"
|
||||
|
||||
|
||||
@@ -36,7 +36,6 @@
|
||||
#define _EXFAT_API_H
|
||||
|
||||
#include <linux/fs.h>
|
||||
#include "exfat_config.h"
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
/* Constant & Macro Definitions */
|
||||
|
||||
@@ -32,7 +32,6 @@
|
||||
/* */
|
||||
/************************************************************************/
|
||||
|
||||
#include "exfat_config.h"
|
||||
#include "exfat_bitmap.h"
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
@@ -34,7 +34,6 @@
|
||||
|
||||
#include <linux/blkdev.h>
|
||||
#include <linux/log2.h>
|
||||
#include "exfat_config.h"
|
||||
#include "exfat_blkdev.h"
|
||||
#include "exfat_data.h"
|
||||
#include "exfat_api.h"
|
||||
|
||||
@@ -36,7 +36,6 @@
|
||||
#define _EXFAT_BLKDEV_H
|
||||
|
||||
#include <linux/fs.h>
|
||||
#include "exfat_config.h"
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
/* Constant & Macro Definitions (Non-Configurable) */
|
||||
|
||||
@@ -33,7 +33,6 @@
|
||||
/* */
|
||||
/************************************************************************/
|
||||
|
||||
#include "exfat_config.h"
|
||||
#include "exfat_data.h"
|
||||
|
||||
#include "exfat_cache.h"
|
||||
|
||||
@@ -38,7 +38,6 @@
|
||||
|
||||
#include <linux/fs.h>
|
||||
#include <linux/types.h>
|
||||
#include "exfat_config.h"
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
/* Constant & Macro Definitions */
|
||||
|
||||
@@ -1,69 +0,0 @@
|
||||
/*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
/************************************************************************/
|
||||
/* */
|
||||
/* PROJECT : exFAT & FAT12/16/32 File System */
|
||||
/* FILE : exfat_config.h */
|
||||
/* PURPOSE : Header File for exFAT Configuable Policies */
|
||||
/* */
|
||||
/*----------------------------------------------------------------------*/
|
||||
/* NOTES */
|
||||
/* */
|
||||
/*----------------------------------------------------------------------*/
|
||||
/* REVISION HISTORY (Ver 0.9) */
|
||||
/* */
|
||||
/* - 2010.11.15 [Joosun Hahn] : first writing */
|
||||
/* */
|
||||
/************************************************************************/
|
||||
|
||||
#ifndef _EXFAT_CONFIG_H
|
||||
#define _EXFAT_CONFIG_H
|
||||
|
||||
/*======================================================================*/
|
||||
/* */
|
||||
/* FFS CONFIGURATIONS */
|
||||
/* (CHANGE THIS PART IF REQUIRED) */
|
||||
/* */
|
||||
/*======================================================================*/
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
/* Feature Config */
|
||||
/*----------------------------------------------------------------------*/
|
||||
#ifndef CONFIG_EXFAT_DISCARD
|
||||
#define CONFIG_EXFAT_DISCARD 1 /* mount option -o discard support */
|
||||
#endif
|
||||
|
||||
#ifndef CONFIG_EXFAT_DELAYED_SYNC
|
||||
#define CONFIG_EXFAT_DELAYED_SYNC 0
|
||||
#endif
|
||||
|
||||
#ifndef CONFIG_EXFAT_KERNEL_DEBUG
|
||||
#define CONFIG_EXFAT_KERNEL_DEBUG 1 /* kernel debug features via ioctl */
|
||||
#endif
|
||||
|
||||
#ifndef CONFIG_EXFAT_DEBUG_MSG
|
||||
#define CONFIG_EXFAT_DEBUG_MSG 0 /* debugging message on/off */
|
||||
#endif
|
||||
|
||||
#ifndef CONFIG_EXFAT_DEFAULT_CODEPAGE
|
||||
#define CONFIG_EXFAT_DEFAULT_CODEPAGE 437
|
||||
#define CONFIG_EXFAT_DEFAULT_IOCHARSET "utf8"
|
||||
#endif
|
||||
|
||||
#endif /* _EXFAT_CONFIG_H */
|
||||
@@ -46,7 +46,6 @@
|
||||
#include <linux/log2.h>
|
||||
|
||||
#include "exfat_bitmap.h"
|
||||
#include "exfat_config.h"
|
||||
#include "exfat_data.h"
|
||||
#include "exfat_oal.h"
|
||||
#include "exfat_blkdev.h"
|
||||
|
||||
@@ -35,7 +35,6 @@
|
||||
#ifndef _EXFAT_H
|
||||
#define _EXFAT_H
|
||||
|
||||
#include "exfat_config.h"
|
||||
#include "exfat_data.h"
|
||||
#include "exfat_oal.h"
|
||||
|
||||
@@ -196,7 +195,7 @@
|
||||
#define UTBL_ROW_COUNT (1<<LOW_INDEX_BIT)
|
||||
#define UTBL_COL_COUNT (1<<HIGH_INDEX_BIT)
|
||||
|
||||
#if CONFIG_EXFAT_DEBUG_MSG
|
||||
#ifdef CONFIG_EXFAT_DEBUG_MSG
|
||||
#define DPRINTK(...) \
|
||||
do { \
|
||||
printk("[EXFAT] " __VA_ARGS__); \
|
||||
|
||||
@@ -32,7 +32,6 @@
|
||||
/* */
|
||||
/************************************************************************/
|
||||
|
||||
#include "exfat_config.h"
|
||||
#include "exfat_data.h"
|
||||
#include "exfat_oal.h"
|
||||
|
||||
|
||||
@@ -35,8 +35,6 @@
|
||||
#ifndef _EXFAT_DATA_H
|
||||
#define _EXFAT_DATA_H
|
||||
|
||||
#include "exfat_config.h"
|
||||
|
||||
/*======================================================================*/
|
||||
/* */
|
||||
/* FFS CONFIGURATIONS */
|
||||
|
||||
@@ -32,7 +32,6 @@
|
||||
/* */
|
||||
/************************************************************************/
|
||||
|
||||
#include "exfat_config.h"
|
||||
#include "exfat_data.h"
|
||||
|
||||
#include "exfat_nls.h"
|
||||
|
||||
@@ -38,7 +38,6 @@
|
||||
#include <linux/types.h>
|
||||
#include <linux/nls.h>
|
||||
|
||||
#include "exfat_config.h"
|
||||
#include "exfat_api.h"
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
@@ -48,7 +48,6 @@
|
||||
typedef time64_t time_t;
|
||||
#endif
|
||||
|
||||
#include "exfat_config.h"
|
||||
#include "exfat_api.h"
|
||||
#include "exfat_oal.h"
|
||||
|
||||
|
||||
@@ -37,7 +37,6 @@
|
||||
#define _EXFAT_OAL_H
|
||||
|
||||
#include <linux/semaphore.h>
|
||||
#include "exfat_config.h"
|
||||
#include <linux/version.h>
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
@@ -75,7 +75,6 @@ typedef time64_t time_t;
|
||||
#include <asm/unaligned.h>
|
||||
|
||||
#include "exfat_version.h"
|
||||
#include "exfat_config.h"
|
||||
#include "exfat_data.h"
|
||||
#include "exfat_oal.h"
|
||||
|
||||
|
||||
@@ -28,7 +28,6 @@
|
||||
#include <linux/mutex.h>
|
||||
#include <linux/swap.h>
|
||||
|
||||
#include "exfat_config.h"
|
||||
#include "exfat_data.h"
|
||||
#include "exfat_oal.h"
|
||||
|
||||
|
||||
@@ -32,8 +32,6 @@
|
||||
/* */
|
||||
/************************************************************************/
|
||||
|
||||
#include "exfat_config.h"
|
||||
|
||||
#include "exfat_nls.h"
|
||||
|
||||
const u8 uni_upcase[NUM_UPCASE<<1] = {
|
||||
|
||||
Reference in New Issue
Block a user