diff options
author | Brian Norris <computersforpeace@gmail.com> | 2014-11-26 01:01:08 -0800 |
---|---|---|
committer | Brian Norris <computersforpeace@gmail.com> | 2015-01-07 17:54:22 -0800 |
commit | 3efe41be224c4441f2a872a25471a14d85ceb7c6 (patch) | |
tree | 4ad8e184902893b5cffa0159e0bf9fdb2ea753c2 /include/linux/mtd | |
parent | 362376a7c65936835f39ff29b082a646d522efbc (diff) |
mtd: implement common reboot notifier boilerplate
cfi_cmdset_000{1,2}.c already implement their own reboot notifiers, and
we're going to add one for NAND. Let's put the boilerplate in one place.
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Tested-by: Scott Branden <sbranden@broadcom.com>
Diffstat (limited to 'include/linux/mtd')
-rw-r--r-- | include/linux/mtd/mtd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/mtd/mtd.h b/include/linux/mtd/mtd.h index 031ff3a9a0bd..c06f5373d870 100644 --- a/include/linux/mtd/mtd.h +++ b/include/linux/mtd/mtd.h @@ -227,6 +227,7 @@ struct mtd_info { int (*_block_markbad) (struct mtd_info *mtd, loff_t ofs); int (*_suspend) (struct mtd_info *mtd); void (*_resume) (struct mtd_info *mtd); + void (*_reboot) (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. |