diff options
Diffstat (limited to 'fs/partitions/check.c')
-rw-r--r-- | fs/partitions/check.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/partitions/check.c b/fs/partitions/check.c index 6b9dae3f0e6c..9a3a058f3553 100644 --- a/fs/partitions/check.c +++ b/fs/partitions/check.c | |||
@@ -34,6 +34,7 @@ | |||
34 | #include "ultrix.h" | 34 | #include "ultrix.h" |
35 | #include "efi.h" | 35 | #include "efi.h" |
36 | #include "karma.h" | 36 | #include "karma.h" |
37 | #include "sysv68.h" | ||
37 | 38 | ||
38 | #ifdef CONFIG_BLK_DEV_MD | 39 | #ifdef CONFIG_BLK_DEV_MD |
39 | extern void md_autodetect_dev(dev_t dev); | 40 | extern void md_autodetect_dev(dev_t dev); |
@@ -105,6 +106,9 @@ static int (*check_part[])(struct parsed_partitions *, struct block_device *) = | |||
105 | #ifdef CONFIG_KARMA_PARTITION | 106 | #ifdef CONFIG_KARMA_PARTITION |
106 | karma_partition, | 107 | karma_partition, |
107 | #endif | 108 | #endif |
109 | #ifdef CONFIG_SYSV68_PARTITION | ||
110 | sysv68_partition, | ||
111 | #endif | ||
108 | NULL | 112 | NULL |
109 | }; | 113 | }; |
110 | 114 | ||