Message ID | 20170622210918.68280-1-computersforpeace@gmail.com |
---|---|
State | Accepted |
Commit | c169e3d3c049d93929a92f909a4b80ba0f85a3c3 |
Headers | show |
On 22 June 2017 at 23:09, Brian Norris <computersforpeace@gmail.com> wrote: > Some recent patches caused churn around this area, and checkpatch > noticed the existing issues. > > Signed-off-by: Brian Norris <computersforpeace@gmail.com> Looks OK obviously, thanks for taking care of this.
On Thu, Jun 22, 2017 at 11:41:58PM +0200, Rafał Miłecki wrote: > On 22 June 2017 at 23:09, Brian Norris <computersforpeace@gmail.com> wrote: > > Some recent patches caused churn around this area, and checkpatch > > noticed the existing issues. > > > > Signed-off-by: Brian Norris <computersforpeace@gmail.com> > > Looks OK obviously, thanks for taking care of this. I'll consider that a "review", as this is so trivial :) Applied to l2-mtd.git
diff --git a/drivers/mtd/mtdpart.c b/drivers/mtd/mtdpart.c index 2ad9493703f9..5736b0c90b33 100644 --- a/drivers/mtd/mtdpart.c +++ b/drivers/mtd/mtdpart.c @@ -402,7 +402,7 @@ static struct mtd_part *allocate_partition(struct mtd_info *parent, const struct mtd_partition *part, int partno, uint64_t cur_offset) { - int wr_alignment = (parent->flags & MTD_NO_ERASE) ? parent->writesize: + int wr_alignment = (parent->flags & MTD_NO_ERASE) ? parent->writesize : parent->erasesize; struct mtd_part *slave; u32 remainder; @@ -480,8 +480,8 @@ static struct mtd_part *allocate_partition(struct mtd_info *parent, slave->mtd._sync = part_sync; if (!partno && !parent->dev.class && parent->_suspend && parent->_resume) { - slave->mtd._suspend = part_suspend; - slave->mtd._resume = part_resume; + slave->mtd._suspend = part_suspend; + slave->mtd._resume = part_resume; } if (parent->_writev) slave->mtd._writev = part_writev;
Some recent patches caused churn around this area, and checkpatch noticed the existing issues. Signed-off-by: Brian Norris <computersforpeace@gmail.com> --- drivers/mtd/mtdpart.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)