Skip to content

Commit

Permalink
[PATCH] drivers/mtd/: small cleanups
Browse files Browse the repository at this point in the history
- chips/sharp.c: make two needlessly global functions static

- move some declarations to a header file where they belong to

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Acked-by: David Woodhouse <dwmw2@infradead.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Adrian Bunk authored and Linus Torvalds committed Mar 31, 2006
1 parent 48b1926 commit 0500abf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
7 changes: 3 additions & 4 deletions drivers/mtd/chips/sharp.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@

#undef AUTOUNLOCK /* automatically unlocks blocks before erasing */

struct mtd_info *sharp_probe(struct map_info *);
static struct mtd_info *sharp_probe(struct map_info *);

static int sharp_probe_map(struct map_info *map,struct mtd_info *mtd);

Expand Down Expand Up @@ -96,7 +96,6 @@ struct sharp_info{
struct flchip chips[1];
};

struct mtd_info *sharp_probe(struct map_info *map);
static void sharp_destroy(struct mtd_info *mtd);

static struct mtd_chip_driver sharp_chipdrv = {
Expand All @@ -107,7 +106,7 @@ static struct mtd_chip_driver sharp_chipdrv = {
};


struct mtd_info *sharp_probe(struct map_info *map)
static struct mtd_info *sharp_probe(struct map_info *map)
{
struct mtd_info *mtd = NULL;
struct sharp_info *sharp = NULL;
Expand Down Expand Up @@ -581,7 +580,7 @@ static void sharp_destroy(struct mtd_info *mtd)

}

int __init sharp_probe_init(void)
static int __init sharp_probe_init(void)
{
printk("MTD Sharp chip driver <ds@lineo.com>\n");

Expand Down
5 changes: 0 additions & 5 deletions drivers/mtd/inftlcore.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,6 @@
*/
#define MAX_LOOPS 10000

extern void INFTL_dumptables(struct INFTLrecord *inftl);
extern void INFTL_dumpVUchains(struct INFTLrecord *inftl);

static void inftl_add_mtd(struct mtd_blktrans_ops *tr, struct mtd_info *mtd)
{
struct INFTLrecord *inftl;
Expand Down Expand Up @@ -885,8 +882,6 @@ static struct mtd_blktrans_ops inftl_tr = {
.owner = THIS_MODULE,
};

extern char inftlmountrev[];

static int __init init_inftl(void)
{
printk(KERN_INFO "INFTL: inftlcore.c $Revision: 1.19 $, "
Expand Down
5 changes: 5 additions & 0 deletions include/linux/mtd/inftl.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ struct INFTLrecord {
int INFTL_mount(struct INFTLrecord *s);
int INFTL_formatblock(struct INFTLrecord *s, int block);

extern char inftlmountrev[];

void INFTL_dumptables(struct INFTLrecord *s);
void INFTL_dumpVUchains(struct INFTLrecord *s);

#endif /* __KERNEL__ */

#endif /* __MTD_INFTL_H__ */

0 comments on commit 0500abf

Please sign in to comment.