mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
mtd: move mtd->{get,put}_device functions up
Move the 'get_device()' and 'put_device()' functions up within 'struct mtd_info' to make them be close to other functions. Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
This commit is contained in:
parent
5942ddbc50
commit
a88d2dc672
@ -214,6 +214,12 @@ struct mtd_info {
|
|||||||
int (*block_markbad) (struct mtd_info *mtd, loff_t ofs);
|
int (*block_markbad) (struct mtd_info *mtd, loff_t ofs);
|
||||||
int (*suspend) (struct mtd_info *mtd);
|
int (*suspend) (struct mtd_info *mtd);
|
||||||
void (*resume) (struct mtd_info *mtd);
|
void (*resume) (struct mtd_info *mtd);
|
||||||
|
/*
|
||||||
|
* If the driver is something smart, like UBI, it may need to maintain
|
||||||
|
* its own reference counting. The below functions are only for driver.
|
||||||
|
*/
|
||||||
|
int (*get_device) (struct mtd_info *mtd);
|
||||||
|
void (*put_device) (struct mtd_info *mtd);
|
||||||
|
|
||||||
/* Backing device capabilities for this device
|
/* Backing device capabilities for this device
|
||||||
* - provides mmap capabilities
|
* - provides mmap capabilities
|
||||||
@ -232,13 +238,6 @@ struct mtd_info {
|
|||||||
struct module *owner;
|
struct module *owner;
|
||||||
struct device dev;
|
struct device dev;
|
||||||
int usecount;
|
int usecount;
|
||||||
|
|
||||||
/* If the driver is something smart, like UBI, it may need to maintain
|
|
||||||
* its own reference counting. The below functions are only for driver.
|
|
||||||
* The driver may register its callbacks. These callbacks are not
|
|
||||||
* supposed to be called by MTD users */
|
|
||||||
int (*get_device) (struct mtd_info *mtd);
|
|
||||||
void (*put_device) (struct mtd_info *mtd);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user