diff options
author | Al Viro <viro@www.linux.org.uk> | 2005-04-25 18:32:12 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-25 18:32:12 -0700 |
commit | 94f2f715771d0aa5554451d1e2a920f11b8be3fe (patch) | |
tree | 07ebba8f6bbb91627c64c1f27e91e916dfd70756 /fs/isofs/util.c | |
parent | 7366d36cb967d7a3ac324c789a8b718e61d01b31 (diff) | |
download | op-kernel-dev-94f2f715771d0aa5554451d1e2a920f11b8be3fe.zip op-kernel-dev-94f2f715771d0aa5554451d1e2a920f11b8be3fe.tar.gz |
[PATCH] isofs includes sanitized
fs/isofs includes trimmed down to something resembling sanity.
Kernel-only parts of linux/iso_fs.h and entire linux/iso_fs_{sb,i}.h
moved to fs/isofs/isofs.h.
A lot of useless #include in fs/isofs/*.c killed.
Signed-off-by: Al Viro <viro@parcelfarce.linux.theplanet.co.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/isofs/util.c')
-rw-r--r-- | fs/isofs/util.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/fs/isofs/util.c b/fs/isofs/util.c index 3f6d9c1..01e1ee7 100644 --- a/fs/isofs/util.c +++ b/fs/isofs/util.c @@ -2,9 +2,7 @@ * linux/fs/isofs/util.c */ -#include <linux/time.h> -#include <linux/fs.h> -#include <linux/iso_fs.h> +#include "isofs.h" /* * We have to convert from a MM/DD/YY format to the Unix ctime format. @@ -80,4 +78,3 @@ int iso_date(char * p, int flag) } return crtime; } - |