diff options
| -rw-r--r-- | drivers/mtd/chips/sharp.c | 7 | ||||
| -rw-r--r-- | drivers/mtd/inftlcore.c | 5 | ||||
| -rw-r--r-- | include/linux/mtd/inftl.h | 5 |
3 files changed, 8 insertions, 9 deletions
diff --git a/drivers/mtd/chips/sharp.c b/drivers/mtd/chips/sharp.c index 36f61a6a76..3cc0b23c58 100644 --- a/drivers/mtd/chips/sharp.c +++ b/drivers/mtd/chips/sharp.c | |||
| @@ -64,7 +64,7 @@ | |||
| 64 | 64 | ||
| 65 | #undef AUTOUNLOCK /* automatically unlocks blocks before erasing */ | 65 | #undef AUTOUNLOCK /* automatically unlocks blocks before erasing */ |
| 66 | 66 | ||
| 67 | struct mtd_info *sharp_probe(struct map_info *); | 67 | static struct mtd_info *sharp_probe(struct map_info *); |
| 68 | 68 | ||
| 69 | static int sharp_probe_map(struct map_info *map,struct mtd_info *mtd); | 69 | static int sharp_probe_map(struct map_info *map,struct mtd_info *mtd); |
| 70 | 70 | ||
| @@ -96,7 +96,6 @@ struct sharp_info{ | |||
| 96 | struct flchip chips[1]; | 96 | struct flchip chips[1]; |
| 97 | }; | 97 | }; |
| 98 | 98 | ||
| 99 | struct mtd_info *sharp_probe(struct map_info *map); | ||
| 100 | static void sharp_destroy(struct mtd_info *mtd); | 99 | static void sharp_destroy(struct mtd_info *mtd); |
| 101 | 100 | ||
| 102 | static struct mtd_chip_driver sharp_chipdrv = { | 101 | static struct mtd_chip_driver sharp_chipdrv = { |
| @@ -107,7 +106,7 @@ static struct mtd_chip_driver sharp_chipdrv = { | |||
| 107 | }; | 106 | }; |
| 108 | 107 | ||
| 109 | 108 | ||
| 110 | struct mtd_info *sharp_probe(struct map_info *map) | 109 | static struct mtd_info *sharp_probe(struct map_info *map) |
| 111 | { | 110 | { |
| 112 | struct mtd_info *mtd = NULL; | 111 | struct mtd_info *mtd = NULL; |
| 113 | struct sharp_info *sharp = NULL; | 112 | struct sharp_info *sharp = NULL; |
| @@ -581,7 +580,7 @@ static void sharp_destroy(struct mtd_info *mtd) | |||
| 581 | 580 | ||
| 582 | } | 581 | } |
| 583 | 582 | ||
| 584 | int __init sharp_probe_init(void) | 583 | static int __init sharp_probe_init(void) |
| 585 | { | 584 | { |
| 586 | printk("MTD Sharp chip driver <ds@lineo.com>\n"); | 585 | printk("MTD Sharp chip driver <ds@lineo.com>\n"); |
| 587 | 586 | ||
diff --git a/drivers/mtd/inftlcore.c b/drivers/mtd/inftlcore.c index 8a54489017..abb76aa632 100644 --- a/drivers/mtd/inftlcore.c +++ b/drivers/mtd/inftlcore.c | |||
| @@ -47,9 +47,6 @@ | |||
| 47 | */ | 47 | */ |
| 48 | #define MAX_LOOPS 10000 | 48 | #define MAX_LOOPS 10000 |
| 49 | 49 | ||
| 50 | extern void INFTL_dumptables(struct INFTLrecord *inftl); | ||
| 51 | extern void INFTL_dumpVUchains(struct INFTLrecord *inftl); | ||
| 52 | |||
| 53 | static void inftl_add_mtd(struct mtd_blktrans_ops *tr, struct mtd_info *mtd) | 50 | static void inftl_add_mtd(struct mtd_blktrans_ops *tr, struct mtd_info *mtd) |
| 54 | { | 51 | { |
| 55 | struct INFTLrecord *inftl; | 52 | struct INFTLrecord *inftl; |
| @@ -885,8 +882,6 @@ static struct mtd_blktrans_ops inftl_tr = { | |||
| 885 | .owner = THIS_MODULE, | 882 | .owner = THIS_MODULE, |
| 886 | }; | 883 | }; |
| 887 | 884 | ||
| 888 | extern char inftlmountrev[]; | ||
| 889 | |||
| 890 | static int __init init_inftl(void) | 885 | static int __init init_inftl(void) |
| 891 | { | 886 | { |
| 892 | printk(KERN_INFO "INFTL: inftlcore.c $Revision: 1.19 $, " | 887 | printk(KERN_INFO "INFTL: inftlcore.c $Revision: 1.19 $, " |
diff --git a/include/linux/mtd/inftl.h b/include/linux/mtd/inftl.h index 0268125a62..d7eaa40e5a 100644 --- a/include/linux/mtd/inftl.h +++ b/include/linux/mtd/inftl.h | |||
| @@ -52,6 +52,11 @@ struct INFTLrecord { | |||
| 52 | int INFTL_mount(struct INFTLrecord *s); | 52 | int INFTL_mount(struct INFTLrecord *s); |
| 53 | int INFTL_formatblock(struct INFTLrecord *s, int block); | 53 | int INFTL_formatblock(struct INFTLrecord *s, int block); |
| 54 | 54 | ||
| 55 | extern char inftlmountrev[]; | ||
| 56 | |||
| 57 | void INFTL_dumptables(struct INFTLrecord *s); | ||
| 58 | void INFTL_dumpVUchains(struct INFTLrecord *s); | ||
| 59 | |||
| 55 | #endif /* __KERNEL__ */ | 60 | #endif /* __KERNEL__ */ |
| 56 | 61 | ||
| 57 | #endif /* __MTD_INFTL_H__ */ | 62 | #endif /* __MTD_INFTL_H__ */ |
