Commit 1f6ca0d6 authored by Stephen Rothwell's avatar Stephen Rothwell Committed by David Woodhouse

mtd: nand: r852: declare inline functions static

Signed-off-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: default avatarDavid Woodhouse <David.Woodhouse@intel.com>
parent ada49657
......@@ -39,17 +39,17 @@ struct sm_oob {
extern int sm_register_device(struct mtd_info *mtd);
inline int sm_sector_valid(struct sm_oob *oob)
static inline int sm_sector_valid(struct sm_oob *oob)
{
return hweight16(oob->data_status) >= 5;
}
inline int sm_block_valid(struct sm_oob *oob)
static inline int sm_block_valid(struct sm_oob *oob)
{
return hweight16(oob->block_status) >= 7;
}
inline int sm_block_erased(struct sm_oob *oob)
static inline int sm_block_erased(struct sm_oob *oob)
{
static const uint32_t erased_pattern[4] = {
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment