diff options
author | Adrian Bunk <bunk@stusta.de> | 2005-06-25 14:58:47 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-25 16:24:59 -0700 |
commit | 486fd404fbc840e28a959d2f2842b6c46ed6b250 (patch) | |
tree | 284a1bd94a1874d6e9b21592553a59810915f04a /fs/partitions/msdos.c | |
parent | 40086ea17e8cf12112438b3a855f44b26f7cb385 (diff) | |
download | kernel_samsung_aries-486fd404fbc840e28a959d2f2842b6c46ed6b250.zip kernel_samsung_aries-486fd404fbc840e28a959d2f2842b6c46ed6b250.tar.gz kernel_samsung_aries-486fd404fbc840e28a959d2f2842b6c46ed6b250.tar.bz2 |
[PATCH] small partitions/msdos cleanups
This patch makes the following changes to the msdos partition code:
- remove CONFIG_NEC98_PARTITION leftovers
- make parse_bsd static
This patch was already ACK'ed by Andries Brouwer.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/partitions/msdos.c')
-rw-r--r-- | fs/partitions/msdos.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/partitions/msdos.c b/fs/partitions/msdos.c index 584a27b..9935d25 100644 --- a/fs/partitions/msdos.c +++ b/fs/partitions/msdos.c @@ -202,12 +202,12 @@ parse_solaris_x86(struct parsed_partitions *state, struct block_device *bdev, #endif } -#if defined(CONFIG_BSD_DISKLABEL) || defined(CONFIG_NEC98_PARTITION) +#if defined(CONFIG_BSD_DISKLABEL) /* * Create devices for BSD partitions listed in a disklabel, under a * dos-like partition. See parse_extended() for more information. */ -void +static void parse_bsd(struct parsed_partitions *state, struct block_device *bdev, u32 offset, u32 size, int origin, char *flavour, int max_partitions) |