Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci-2.6.23
Commits
182ec4ee
Commit
182ec4ee
authored
Nov 07, 2005
by
Thomas Gleixner
Committed by
Thomas Gleixner
Nov 07, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[JFFS2] Clean up trailing white spaces
Signed-off-by:
Thomas Gleixner
<
tglx@linutronix.de
>
parent
97894cda
Changes
35
Show whitespace changes
Inline
Side-by-side
Showing
35 changed files
with
597 additions
and
598 deletions
+597
-598
fs/Kconfig
fs/Kconfig
+5
-5
fs/jffs2/background.c
fs/jffs2/background.c
+2
-2
fs/jffs2/build.c
fs/jffs2/build.c
+14
-14
fs/jffs2/compr.c
fs/jffs2/compr.c
+14
-14
fs/jffs2/compr.h
fs/jffs2/compr.h
+2
-2
fs/jffs2/compr_rtime.c
fs/jffs2/compr_rtime.c
+16
-16
fs/jffs2/compr_rubin.c
fs/jffs2/compr_rubin.c
+18
-19
fs/jffs2/compr_rubin.h
fs/jffs2/compr_rubin.h
+3
-3
fs/jffs2/compr_zlib.c
fs/jffs2/compr_zlib.c
+7
-7
fs/jffs2/comprtest.c
fs/jffs2/comprtest.c
+15
-15
fs/jffs2/debug.c
fs/jffs2/debug.c
+15
-15
fs/jffs2/debug.h
fs/jffs2/debug.h
+5
-5
fs/jffs2/dir.c
fs/jffs2/dir.c
+37
-37
fs/jffs2/erase.c
fs/jffs2/erase.c
+14
-14
fs/jffs2/file.c
fs/jffs2/file.c
+10
-10
fs/jffs2/fs.c
fs/jffs2/fs.c
+28
-28
fs/jffs2/gc.c
fs/jffs2/gc.c
+56
-56
fs/jffs2/histo.h
fs/jffs2/histo.h
+1
-1
fs/jffs2/histo_mips.h
fs/jffs2/histo_mips.h
+1
-1
fs/jffs2/ioctl.c
fs/jffs2/ioctl.c
+3
-3
fs/jffs2/malloc.c
fs/jffs2/malloc.c
+2
-2
fs/jffs2/nodelist.c
fs/jffs2/nodelist.c
+85
-85
fs/jffs2/nodelist.h
fs/jffs2/nodelist.h
+13
-13
fs/jffs2/nodemgmt.c
fs/jffs2/nodemgmt.c
+29
-29
fs/jffs2/os-linux.h
fs/jffs2/os-linux.h
+4
-4
fs/jffs2/read.c
fs/jffs2/read.c
+8
-8
fs/jffs2/readinode.c
fs/jffs2/readinode.c
+42
-42
fs/jffs2/scan.c
fs/jffs2/scan.c
+26
-26
fs/jffs2/summary.c
fs/jffs2/summary.c
+4
-4
fs/jffs2/super.c
fs/jffs2/super.c
+8
-8
fs/jffs2/symlink.c
fs/jffs2/symlink.c
+4
-4
fs/jffs2/wbuf.c
fs/jffs2/wbuf.c
+64
-64
fs/jffs2/write.c
fs/jffs2/write.c
+34
-34
include/linux/jffs2.h
include/linux/jffs2.h
+6
-6
include/linux/jffs2_fs_i.h
include/linux/jffs2_fs_i.h
+2
-2
No files found.
fs/Kconfig
View file @
182ec4ee
fs/jffs2/background.c
View file @
182ec4ee
fs/jffs2/build.c
View file @
182ec4ee
...
...
@@ -7,7 +7,7 @@
*
* For licensing information, see the file 'LICENCE' in this directory.
*
* $Id: build.c,v 1.8
4 2005/09/27 13:40:49 dedekind
Exp $
* $Id: build.c,v 1.8
5 2005/11/07 11:14:38 gleixner
Exp $
*
*/
...
...
fs/jffs2/compr.c
View file @
182ec4ee
...
...
@@ -9,7 +9,7 @@
*
* For licensing information, see the file 'LICENCE' in this directory.
*
* $Id: compr.c,v 1.4
5 2005/07/26 13:24:40 havasi
Exp $
* $Id: compr.c,v 1.4
6 2005/11/07 11:14:38 gleixner
Exp $
*
*/
...
...
fs/jffs2/compr.h
View file @
182ec4ee
...
...
@@ -7,7 +7,7 @@
* For licensing information, see the file 'LICENCE' in the
* jffs2 directory.
*
* $Id: compr.h,v 1.
8 2005/07/26 13:24:40 havasi
Exp $
* $Id: compr.h,v 1.
9 2005/11/07 11:14:38 gleixner
Exp $
*
*/
...
...
fs/jffs2/compr_rtime.c
View file @
182ec4ee
fs/jffs2/compr_rubin.c
View file @
182ec4ee
...
...
@@ -11,7 +11,6 @@
*
*/
#include <linux/string.h>
#include <linux/types.h>
#include <linux/jffs2.h>
...
...
fs/jffs2/compr_rubin.h
View file @
182ec4ee
/* Rubin encoder/decoder header */
/* work started at : aug 3, 1994 */
/* last modification : aug 15, 1994 */
/* $Id: compr_rubin.h,v 1.
6 2002/01/25 01:49:26 dwmw2
Exp $ */
/* $Id: compr_rubin.h,v 1.
7 2005/11/07 11:14:38 gleixner
Exp $ */
#include "pushpull.h"
...
...
fs/jffs2/compr_zlib.c
View file @
182ec4ee
...
...
@@ -7,7 +7,7 @@
*
* For licensing information, see the file 'LICENCE' in this directory.
*
* $Id: compr_zlib.c,v 1.3
1 2005/05/20 19:30:06
gleixner Exp $
* $Id: compr_zlib.c,v 1.3
2 2005/11/07 11:14:38
gleixner Exp $
*
*/
...
...
fs/jffs2/comprtest.c
View file @
182ec4ee
/* $Id: comprtest.c,v 1.
5 2002/01/03 15:20:44 dwmw2
Exp $ */
/* $Id: comprtest.c,v 1.
6 2005/11/07 11:14:38 gleixner
Exp $ */
#include <linux/kernel.h>
#include <linux/string.h>
...
...
fs/jffs2/debug.c
View file @
182ec4ee
...
...
@@ -7,7 +7,7 @@
*
* For licensing information, see the file 'LICENCE' in this directory.
*
* $Id: debug.c,v 1.1
1 2005/09/21 13:28:35 dedekind
Exp $
* $Id: debug.c,v 1.1
2 2005/11/07 11:14:39 gleixner
Exp $
*
*/
#include <linux/kernel.h>
...
...
fs/jffs2/debug.h
View file @
182ec4ee
...
...
@@ -7,7 +7,7 @@
*
* For licensing information, see the file 'LICENCE' in this directory.
*
* $Id: debug.h,v 1.2
0 2005/10/24 16:22:34 dedekind
Exp $
* $Id: debug.h,v 1.2
1 2005/11/07 11:14:39 gleixner
Exp $
*
*/
#ifndef _JFFS2_DEBUG_H_
...
...
fs/jffs2/dir.c
View file @
182ec4ee
...
...
@@ -7,7 +7,7 @@
*
* For licensing information, see the file 'LICENCE' in this directory.
*
* $Id: dir.c,v 1.
89 2005/09/07 08:34:54 havasi
Exp $
* $Id: dir.c,v 1.
90 2005/11/07 11:14:39 gleixner
Exp $
*
*/
...
...
fs/jffs2/erase.c
View file @
182ec4ee
fs/jffs2/file.c
View file @
182ec4ee
fs/jffs2/fs.c
View file @
182ec4ee
fs/jffs2/gc.c
View file @
182ec4ee
...
...
@@ -7,7 +7,7 @@
*
* For licensing information, see the file 'LICENCE' in this directory.
*
* $Id: gc.c,v 1.15
4 2005/09/07 08:34:54 havasi
Exp $
* $Id: gc.c,v 1.15
5 2005/11/07 11:14:39 gleixner
Exp $
*
*/
...
...
fs/jffs2/histo.h
View file @
182ec4ee
fs/jffs2/histo_mips.h
View file @
182ec4ee
fs/jffs2/ioctl.c
View file @
182ec4ee
...
...
@@ -7,7 +7,7 @@
*
* For licensing information, see the file 'LICENCE' in this directory.
*
* $Id: ioctl.c,v 1.
9 2004/11/16 20:36:11 dwmw2
Exp $
* $Id: ioctl.c,v 1.
10 2005/11/07 11:14:40 gleixner
Exp $
*
*/
...
...
fs/jffs2/malloc.c
View file @
182ec4ee
...
...
@@ -7,7 +7,7 @@
*
* For licensing information, see the file 'LICENCE' in this directory.
*
* $Id: malloc.c,v 1.3
0 2005/09/20 14:27:34 dedekind
Exp $
* $Id: malloc.c,v 1.3
1 2005/11/07 11:14:40 gleixner
Exp $
*
*/
...
...
fs/jffs2/nodelist.c
View file @
182ec4ee
...
...
@@ -7,7 +7,7 @@
*
* For licensing information, see the file 'LICENCE' in this directory.
*
* $Id: nodelist.c,v 1.11
4 2005/09/21 13:28:35 dedekind
Exp $
* $Id: nodelist.c,v 1.11
5 2005/11/07 11:14:40 gleixner
Exp $
*
*/
...
...
fs/jffs2/nodelist.h
View file @
182ec4ee
fs/jffs2/nodemgmt.c
View file @
182ec4ee
fs/jffs2/os-linux.h
View file @
182ec4ee
fs/jffs2/read.c
View file @
182ec4ee
...
...
@@ -7,7 +7,7 @@
*
* For licensing information, see the file 'LICENCE' in this directory.
*
* $Id: read.c,v 1.4
1 2005/07/22 10:32:08 dedekind
Exp $
* $Id: read.c,v 1.4
2 2005/11/07 11:14:41 gleixner
Exp $
*
*/
...
...
fs/jffs2/readinode.c
View file @
182ec4ee
...
...
@@ -7,7 +7,7 @@
*
* For licensing information, see the file 'LICENCE' in this directory.
*
* $Id: readinode.c,v 1.14
2 2005/09/20 14:27:34 dedekind
Exp $
* $Id: readinode.c,v 1.14
3 2005/11/07 11:14:41 gleixner
Exp $
*
*/
...
...
fs/jffs2/scan.c
View file @
182ec4ee
fs/jffs2/summary.c
View file @
182ec4ee
fs/jffs2/super.c
View file @
182ec4ee
...
...
@@ -7,7 +7,7 @@
*
* For licensing information, see the file 'LICENCE' in this directory.
*
* $Id: super.c,v 1.1
09 2005/09/07 08:34:55 havasi
Exp $
* $Id: super.c,v 1.1
10 2005/11/07 11:14:42 gleixner
Exp $
*
*/
...
...
fs/jffs2/symlink.c
View file @
182ec4ee
...
...
@@ -7,7 +7,7 @@
*
* For licensing information, see the file 'LICENCE' in this directory.
*
* $Id: symlink.c,v 1.1
8 2005/11/06 11:03:27
gleixner Exp $
* $Id: symlink.c,v 1.1
9 2005/11/07 11:14:42
gleixner Exp $
*
*/
...
...
fs/jffs2/wbuf.c
View file @
182ec4ee
fs/jffs2/write.c
View file @
182ec4ee
...
...
@@ -7,7 +7,7 @@
*
* For licensing information, see the file 'LICENCE' in this directory.
*
* $Id: write.c,v 1.9
6 2005/09/07 08:34:55 havasi
Exp $
* $Id: write.c,v 1.9
7 2005/11/07 11:14:42 gleixner
Exp $
*
*/
...
...
include/linux/jffs2.h
View file @
182ec4ee
include/linux/jffs2_fs_i.h
View file @
182ec4ee
/* $Id: jffs2_fs_i.h,v 1.1
8 2005/07/17 11:13:48 dedekind
Exp $ */
/* $Id: jffs2_fs_i.h,v 1.1
9 2005/11/07 11:14:52 gleixner
Exp $ */
#ifndef _JFFS2_FS_I
#define _JFFS2_FS_I
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment