提交 5ce45d50 编写于 作者: A Adrian Bunk 提交者: David Woodhouse

[MTD] ftl.c: make code static

This patch makes the following needlessly global code static:
- ftl_freepart()
- struct ftl_tr
Signed-off-by: NAdrian Bunk <bunk@kernel.org>
Signed-off-by: NDavid Woodhouse <dwmw2@infradead.org>
上级 ed262c4f
......@@ -136,8 +136,6 @@ typedef struct partition_t {
#endif
} partition_t;
void ftl_freepart(partition_t *part);
/* Partition state flags */
#define FTL_FORMATTED 0x01
......@@ -1014,7 +1012,7 @@ static int ftl_writesect(struct mtd_blktrans_dev *dev,
/*====================================================================*/
void ftl_freepart(partition_t *part)
static void ftl_freepart(partition_t *part)
{
vfree(part->VirtualBlockMap);
part->VirtualBlockMap = NULL;
......@@ -1069,7 +1067,7 @@ static void ftl_remove_dev(struct mtd_blktrans_dev *dev)
kfree(dev);
}
struct mtd_blktrans_ops ftl_tr = {
static struct mtd_blktrans_ops ftl_tr = {
.name = "ftl",
.major = FTL_MAJOR,
.part_bits = PART_BITS,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册