* [PATCH v3 0/7] mtd: denali: A collection of trivial coding style fixes
@ 2014-09-16 11:04 Masahiro Yamada
2014-09-16 11:04 ` [PATCH v3 5/7] mtd: denali: remove a set-but-unused variable Masahiro Yamada
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Masahiro Yamada @ 2014-09-16 11:04 UTC (permalink / raw)
To: linux-mtd
Cc: Jiri Kosina, David Woodhouse, linux-kernel, Josh Triplett,
Masahiro Yamada, Rashika Kheria, grmoore@altera.com, Brian Norris,
Huang Shijie
Masahiro Yamada (7):
mtd: denali: fix the format of comment blocks
mtd: denali: remove unnecessary variable initializations
mtd: denali: remove unnecessary casts
mtd: denali: change the type of iterators to int
mtd: denali: remove a set-but-unused variable
mtd: denali: remove unnecessary parentheses
mtd: denali: fix indents and other trivial things
drivers/mtd/nand/denali.c | 558 +++++++++++++++++++++++++---------------------
1 file changed, 301 insertions(+), 257 deletions(-)
--
1.9.1
^ permalink raw reply [flat|nested] 9+ messages in thread* [PATCH v3 5/7] mtd: denali: remove a set-but-unused variable 2014-09-16 11:04 [PATCH v3 0/7] mtd: denali: A collection of trivial coding style fixes Masahiro Yamada @ 2014-09-16 11:04 ` Masahiro Yamada 2014-09-16 11:04 ` [PATCH v3 6/7] mtd: denali: remove unnecessary parentheses Masahiro Yamada ` (3 subsequent siblings) 4 siblings, 0 replies; 9+ messages in thread From: Masahiro Yamada @ 2014-09-16 11:04 UTC (permalink / raw) To: linux-mtd Cc: David Woodhouse, Josh Triplett, linux-kernel, Masahiro Yamada, Rashika Kheria, grmoore@altera.com, Brian Norris, Huang Shijie The variable "retry" in wait_for_irq() is set, but not used. Likewise, for "irq_status" in denali_read_page_raw(). Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Reviewed-by: Josh Triplett <josh@joshtriplett.org> --- Changes in v3: - Remove also set-but-unused irq_status Changes in v2: None drivers/mtd/nand/denali.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/drivers/mtd/nand/denali.c b/drivers/mtd/nand/denali.c index 4cb1497..e5c39d2 100644 --- a/drivers/mtd/nand/denali.c +++ b/drivers/mtd/nand/denali.c @@ -697,7 +697,6 @@ static uint32_t wait_for_irq(struct denali_nand_info *denali, uint32_t irq_mask) { unsigned long comp_res; uint32_t intr_status; - bool retry = false; unsigned long timeout = msecs_to_jiffies(1000); do { @@ -717,7 +716,6 @@ static uint32_t wait_for_irq(struct denali_nand_info *denali, uint32_t irq_mask) * need to wait again */ spin_unlock_irq(&denali->irq_lock); - retry = true; } } while (comp_res != 0); @@ -1220,7 +1218,6 @@ static int denali_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip, dma_addr_t addr = denali->buf.dma_buf; size_t size = denali->mtd.writesize + denali->mtd.oobsize; - uint32_t irq_status; uint32_t irq_mask = INTR_STATUS__DMA_CMD_COMP; if (page != denali->page) { @@ -1239,7 +1236,7 @@ static int denali_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip, denali_setup_dma(denali, DENALI_READ); /* wait for operation to complete */ - irq_status = wait_for_irq(denali, irq_mask); + wait_for_irq(denali, irq_mask); dma_sync_single_for_cpu(denali->dev, addr, size, DMA_FROM_DEVICE); -- 1.9.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v3 6/7] mtd: denali: remove unnecessary parentheses 2014-09-16 11:04 [PATCH v3 0/7] mtd: denali: A collection of trivial coding style fixes Masahiro Yamada 2014-09-16 11:04 ` [PATCH v3 5/7] mtd: denali: remove a set-but-unused variable Masahiro Yamada @ 2014-09-16 11:04 ` Masahiro Yamada 2014-09-16 11:04 ` [PATCH v3 7/7] mtd: denali: fix indents and other trivial things Masahiro Yamada ` (2 subsequent siblings) 4 siblings, 0 replies; 9+ messages in thread From: Masahiro Yamada @ 2014-09-16 11:04 UTC (permalink / raw) To: linux-mtd Cc: David Woodhouse, Josh Triplett, linux-kernel, Masahiro Yamada, Rashika Kheria, grmoore@altera.com, Brian Norris, Huang Shijie We should use parentheses only when they are necessary or they really improve the readability. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Reviewed-by: Josh Triplett <josh@joshtriplett.org> --- Changes in v3: - Rebase on l2-mtd.git Changes in v2: None drivers/mtd/nand/denali.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/drivers/mtd/nand/denali.c b/drivers/mtd/nand/denali.c index e5c39d2..945943e 100644 --- a/drivers/mtd/nand/denali.c +++ b/drivers/mtd/nand/denali.c @@ -267,10 +267,10 @@ static void nand_onfi_timing_set(struct denali_nand_info *denali, acc_clks = CEIL_DIV(Trea[mode], CLK_X); - while (((acc_clks * CLK_X) - Trea[mode]) < 3) + while (acc_clks * CLK_X - Trea[mode] < 3) acc_clks++; - if ((data_invalid - acc_clks * CLK_X) < 2) + if (data_invalid - acc_clks * CLK_X < 2) dev_warn(denali->dev, "%s, Line %d: Warning!\n", __FILE__, __LINE__); @@ -285,7 +285,7 @@ static void nand_onfi_timing_set(struct denali_nand_info *denali, cs_cnt = 1; if (Tcea[mode]) { - while (((cs_cnt * CLK_X) + Trea[mode]) < Tcea[mode]) + while (cs_cnt * CLK_X + Trea[mode] < Tcea[mode]) cs_cnt++; } @@ -295,8 +295,8 @@ static void nand_onfi_timing_set(struct denali_nand_info *denali, #endif /* Sighting 3462430: Temporary hack for MT29F128G08CJABAWP:B */ - if ((ioread32(denali->flash_reg + MANUFACTURER_ID) == 0) && - (ioread32(denali->flash_reg + DEVICE_ID) == 0x88)) + if (ioread32(denali->flash_reg + MANUFACTURER_ID) == 0 && + ioread32(denali->flash_reg + DEVICE_ID) == 0x88) acc_clks = 6; iowrite32(acc_clks, denali->flash_reg + ACC_CLKS); @@ -577,7 +577,7 @@ static void denali_set_intr_modes(struct denali_nand_info *denali, */ static inline bool is_flash_bank_valid(int flash_bank) { - return (flash_bank >= 0 && flash_bank < 4); + return flash_bank >= 0 && flash_bank < 4; } static void denali_irq_init(struct denali_nand_info *denali) @@ -1293,7 +1293,7 @@ static int denali_erase(struct mtd_info *mtd, int page) irq_status = wait_for_irq(denali, INTR_STATUS__ERASE_COMP | INTR_STATUS__ERASE_FAIL); - return (irq_status & INTR_STATUS__ERASE_FAIL) ? NAND_STATUS_FAIL : PASS; + return irq_status & INTR_STATUS__ERASE_FAIL ? NAND_STATUS_FAIL : PASS; } static void denali_cmdfunc(struct mtd_info *mtd, unsigned int cmd, int col, -- 1.9.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v3 7/7] mtd: denali: fix indents and other trivial things 2014-09-16 11:04 [PATCH v3 0/7] mtd: denali: A collection of trivial coding style fixes Masahiro Yamada 2014-09-16 11:04 ` [PATCH v3 5/7] mtd: denali: remove a set-but-unused variable Masahiro Yamada 2014-09-16 11:04 ` [PATCH v3 6/7] mtd: denali: remove unnecessary parentheses Masahiro Yamada @ 2014-09-16 11:04 ` Masahiro Yamada 2014-09-17 17:13 ` [PATCH v3 0/7] mtd: denali: A collection of trivial coding style fixes Brian Norris 2014-09-19 17:00 ` Brian Norris 4 siblings, 0 replies; 9+ messages in thread From: Masahiro Yamada @ 2014-09-16 11:04 UTC (permalink / raw) To: linux-mtd Cc: Jiri Kosina, Huang Shijie, Josh Triplett, linux-kernel, Masahiro Yamada, Rashika Kheria, grmoore@altera.com, Brian Norris, David Woodhouse - Fix indents - Do not break a line unless it is longer than 80 columns - Do not insert a whitespace before ';' - Use whitespaces around operators - Use braces for a "else" block where the "if" block uses ones. Besides, eliminate all the warnings reported by checkpatch.pl: - WARNING: quoted string split across lines - WARNING: else is not generally useful after a break or return - WARNING: Missing a blank line after declarations - WARNING: Avoid line continuations in quoted strings Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> --- Changes in v3: - Rebase on l2-mtd.git Changes in v2: - Join quotes strings into a single line drivers/mtd/nand/denali.c | 138 ++++++++++++++++++++-------------------------- 1 file changed, 61 insertions(+), 77 deletions(-) diff --git a/drivers/mtd/nand/denali.c b/drivers/mtd/nand/denali.c index 945943e..b3b7ca1 100644 --- a/drivers/mtd/nand/denali.c +++ b/drivers/mtd/nand/denali.c @@ -37,8 +37,8 @@ MODULE_LICENSE("GPL"); static int onfi_timing_mode = NAND_DEFAULT_TIMINGS; module_param(onfi_timing_mode, int, S_IRUGO); -MODULE_PARM_DESC(onfi_timing_mode, "Overrides default ONFI setting." - " -1 indicates use default timings"); +MODULE_PARM_DESC(onfi_timing_mode, + "Overrides default ONFI setting. -1 indicates use default timings"); #define DENALI_NAND_NAME "denali-nand" @@ -162,8 +162,7 @@ static void read_status(struct denali_nand_info *denali) static void reset_bank(struct denali_nand_info *denali) { uint32_t irq_status; - uint32_t irq_mask = INTR_STATUS__RST_COMP | - INTR_STATUS__TIME_OUT; + uint32_t irq_mask = INTR_STATUS__RST_COMP | INTR_STATUS__TIME_OUT; clear_interrupts(denali); @@ -181,16 +180,15 @@ static uint16_t denali_nand_reset(struct denali_nand_info *denali) int i; dev_dbg(denali->dev, "%s, Line %d, Function: %s\n", - __FILE__, __LINE__, __func__); + __FILE__, __LINE__, __func__); - for (i = 0 ; i < denali->max_banks; i++) + for (i = 0; i < denali->max_banks; i++) iowrite32(INTR_STATUS__RST_COMP | INTR_STATUS__TIME_OUT, denali->flash_reg + INTR_STATUS(i)); - for (i = 0 ; i < denali->max_banks; i++) { + for (i = 0; i < denali->max_banks; i++) { iowrite32(1 << i, denali->flash_reg + DEVICE_RESET); - while (!(ioread32(denali->flash_reg + - INTR_STATUS(i)) & + while (!(ioread32(denali->flash_reg + INTR_STATUS(i)) & (INTR_STATUS__RST_COMP | INTR_STATUS__TIME_OUT))) cpu_relax(); if (ioread32(denali->flash_reg + INTR_STATUS(i)) & @@ -201,7 +199,7 @@ static uint16_t denali_nand_reset(struct denali_nand_info *denali) for (i = 0; i < denali->max_banks; i++) iowrite32(INTR_STATUS__RST_COMP | INTR_STATUS__TIME_OUT, - denali->flash_reg + INTR_STATUS(i)); + denali->flash_reg + INTR_STATUS(i)); return PASS; } @@ -235,7 +233,7 @@ static void nand_onfi_timing_set(struct denali_nand_info *denali, uint16_t addr_2_data, re_2_we, re_2_re, we_2_re, cs_cnt; dev_dbg(denali->dev, "%s, Line %d, Function: %s\n", - __FILE__, __LINE__, __func__); + __FILE__, __LINE__, __func__); en_lo = CEIL_DIV(Trp[mode], CLK_X); en_hi = CEIL_DIV(Treh[mode], CLK_X); @@ -255,9 +253,8 @@ static void nand_onfi_timing_set(struct denali_nand_info *denali, data_invalid_rloh = (en_lo + en_hi) * CLK_X + Trloh[mode]; - data_invalid = - data_invalid_rhoh < - data_invalid_rloh ? data_invalid_rhoh : data_invalid_rloh; + data_invalid = data_invalid_rhoh < data_invalid_rloh ? + data_invalid_rhoh : data_invalid_rloh; dv_window = data_invalid - Trea[mode]; @@ -272,7 +269,7 @@ static void nand_onfi_timing_set(struct denali_nand_info *denali, if (data_invalid - acc_clks * CLK_X < 2) dev_warn(denali->dev, "%s, Line %d: Warning!\n", - __FILE__, __LINE__); + __FILE__, __LINE__); addr_2_data = CEIL_DIV(Tadl[mode], CLK_X); re_2_we = CEIL_DIV(Trhw[mode], CLK_X); @@ -406,9 +403,9 @@ static void get_hynix_nand_para(struct denali_nand_info *denali, break; default: dev_warn(denali->dev, - "Spectra: Unknown Hynix NAND (Device ID: 0x%x)." - "Will use default parameter values instead.\n", - device_id); + "Spectra: Unknown Hynix NAND (Device ID: 0x%x).\n" + "Will use default parameter values instead.\n", + device_id); } } @@ -425,8 +422,7 @@ static void find_valid_banks(struct denali_nand_info *denali) for (i = 0; i < denali->max_banks; i++) { index_addr(denali, MODE_11 | (i << 24) | 0, 0x90); index_addr(denali, MODE_11 | (i << 24) | 1, 0); - index_addr_read_data(denali, - MODE_11 | (i << 24) | 2, &id[i]); + index_addr_read_data(denali, MODE_11 | (i << 24) | 2, &id[i]); dev_dbg(denali->dev, "Return 1st ID for bank[%d]: %x\n", i, id[i]); @@ -450,8 +446,7 @@ static void find_valid_banks(struct denali_nand_info *denali) */ if (denali->total_used_banks != 1) { dev_err(denali->dev, - "Sorry, Intel CE4100 only supports " - "a single NAND device.\n"); + "Sorry, Intel CE4100 only supports a single NAND device.\n"); BUG(); } } @@ -489,10 +484,12 @@ static void detect_partition_feature(struct denali_nand_info *denali) + (ioread32(denali->flash_reg + MIN_BLK_ADDR(1)) & MIN_BLK_ADDR__VALUE); - } else + } else { denali->fwblks = SPECTRA_START_BLOCK; - } else + } + } else { denali->fwblks = SPECTRA_START_BLOCK; + } } static uint16_t denali_nand_timing_set(struct denali_nand_info *denali) @@ -502,8 +499,7 @@ static uint16_t denali_nand_timing_set(struct denali_nand_info *denali) uint8_t maf_id, device_id; int i; - dev_dbg(denali->dev, - "%s, Line %d, Function: %s\n", + dev_dbg(denali->dev, "%s, Line %d, Function: %s\n", __FILE__, __LINE__, __func__); /* @@ -532,7 +528,7 @@ static uint16_t denali_nand_timing_set(struct denali_nand_info *denali) } dev_info(denali->dev, - "Dump timing register values:" + "Dump timing register values:\n" "acc_clks: %d, re_2_we: %d, re_2_re: %d\n" "we_2_re: %d, addr_2_data: %d, rdwr_en_lo_cnt: %d\n" "rdwr_en_hi_cnt: %d, cs_setup_cnt: %d\n", @@ -563,7 +559,7 @@ static void denali_set_intr_modes(struct denali_nand_info *denali, uint16_t INT_ENABLE) { dev_dbg(denali->dev, "%s, Line %d, Function: %s\n", - __FILE__, __LINE__, __func__); + __FILE__, __LINE__, __func__); if (INT_ENABLE) iowrite32(1, denali->flash_reg + GLOBAL_INT_ENABLE); @@ -710,13 +706,13 @@ static uint32_t wait_for_irq(struct denali_nand_info *denali, uint32_t irq_mask) spin_unlock_irq(&denali->irq_lock); /* our interrupt was detected */ break; - } else { - /* - * these are not the interrupts you are looking for - - * need to wait again - */ - spin_unlock_irq(&denali->irq_lock); } + + /* + * these are not the interrupts you are looking for - + * need to wait again + */ + spin_unlock_irq(&denali->irq_lock); } while (comp_res != 0); if (comp_res == 0) { @@ -744,8 +740,7 @@ static void setup_ecc_for_xfer(struct denali_nand_info *denali, bool ecc_en, /* Enable spare area/ECC per user's request. */ iowrite32(ecc_en_flag, denali->flash_reg + ECC_ENABLE); - iowrite32(transfer_spare_flag, - denali->flash_reg + TRANSFER_SPARE_REG); + iowrite32(transfer_spare_flag, denali->flash_reg + TRANSFER_SPARE_REG); } /* @@ -753,10 +748,8 @@ static void setup_ecc_for_xfer(struct denali_nand_info *denali, bool ecc_en, * controller's user guide for more information (section 4.2.3.6). */ static int denali_send_pipeline_cmd(struct denali_nand_info *denali, - bool ecc_en, - bool transfer_spare, - int access_type, - int op) + bool ecc_en, bool transfer_spare, + int access_type, int op) { int status = PASS; uint32_t page_count = 1; @@ -811,9 +804,8 @@ static int denali_send_pipeline_cmd(struct denali_nand_info *denali, if (irq_status == 0) { dev_err(denali->dev, - "cmd, page, addr on timeout " - "(0x%x, 0x%x, 0x%x)\n", - cmd, denali->page, addr); + "cmd, page, addr on timeout (0x%x, 0x%x, 0x%x)\n", + cmd, denali->page, addr); status = FAIL; } else { cmd = MODE_01 | addr; @@ -826,8 +818,7 @@ static int denali_send_pipeline_cmd(struct denali_nand_info *denali, /* helper function that simply writes a buffer to the flash */ static int write_data_to_flash_mem(struct denali_nand_info *denali, - const uint8_t *buf, - int len) + const uint8_t *buf, int len) { uint32_t *buf32; int i; @@ -842,13 +833,12 @@ static int write_data_to_flash_mem(struct denali_nand_info *denali, buf32 = (uint32_t *)buf; for (i = 0; i < len / 4; i++) iowrite32(*buf32++, denali->flash_mem + 0x10); - return i*4; /* intent is to return the number of bytes read */ + return i * 4; /* intent is to return the number of bytes read */ } /* helper function that simply reads a buffer from the flash */ static int read_data_from_flash_mem(struct denali_nand_info *denali, - uint8_t *buf, - int len) + uint8_t *buf, int len) { uint32_t *buf32; int i; @@ -865,7 +855,7 @@ static int read_data_from_flash_mem(struct denali_nand_info *denali, buf32 = (uint32_t *)buf; for (i = 0; i < len / 4; i++) *buf32++ = ioread32(denali->flash_mem + 0x10); - return i*4; /* intent is to return the number of bytes read */ + return i * 4; /* intent is to return the number of bytes read */ } /* writes OOB data to the device */ @@ -941,6 +931,7 @@ static void read_oob_data(struct mtd_info *mtd, uint8_t *buf, int page) static bool is_erased(uint8_t *buf, int len) { int i; + for (i = 0; i < len; i++) if (buf[i] != 0xFF) return false; @@ -990,6 +981,7 @@ static bool handle_ecc(struct denali_nand_info *denali, uint8_t *buf, */ if (err_byte < ECC_SECTOR_SIZE) { int offset; + offset = (err_sector * ECC_SECTOR_SIZE + err_byte) * @@ -1063,10 +1055,8 @@ static int write_page(struct mtd_info *mtd, struct nand_chip *chip, const uint8_t *buf, bool raw_xfer) { struct denali_nand_info *denali = mtd_to_denali(mtd); - dma_addr_t addr = denali->buf.dma_buf; size_t size = denali->mtd.writesize + denali->mtd.oobsize; - uint32_t irq_status; uint32_t irq_mask = INTR_STATUS__DMA_CMD_COMP | INTR_STATUS__PROGRAM_FAIL; @@ -1099,9 +1089,8 @@ static int write_page(struct mtd_info *mtd, struct nand_chip *chip, irq_status = wait_for_irq(denali, irq_mask); if (irq_status == 0) { - dev_err(denali->dev, - "timeout on write_page (type = %d)\n", - raw_xfer); + dev_err(denali->dev, "timeout on write_page (type = %d)\n", + raw_xfer); denali->status = NAND_STATUS_FAIL; } @@ -1172,9 +1161,9 @@ static int denali_read_page(struct mtd_info *mtd, struct nand_chip *chip, bool check_erased_page = false; if (page != denali->page) { - dev_err(denali->dev, "IN %s: page %d is not" - " equal to denali->page %d, investigate!!", - __func__, page, denali->page); + dev_err(denali->dev, + "IN %s: page %d is not equal to denali->page %d", + __func__, page, denali->page); BUG(); } @@ -1214,16 +1203,14 @@ static int denali_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip, uint8_t *buf, int oob_required, int page) { struct denali_nand_info *denali = mtd_to_denali(mtd); - dma_addr_t addr = denali->buf.dma_buf; size_t size = denali->mtd.writesize + denali->mtd.oobsize; - uint32_t irq_mask = INTR_STATUS__DMA_CMD_COMP; if (page != denali->page) { - dev_err(denali->dev, "IN %s: page %d is not" - " equal to denali->page %d, investigate!!", - __func__, page, denali->page); + dev_err(denali->dev, + "IN %s: page %d is not equal to denali->page %d", + __func__, page, denali->page); BUG(); } @@ -1272,6 +1259,7 @@ static int denali_waitfunc(struct mtd_info *mtd, struct nand_chip *chip) { struct denali_nand_info *denali = mtd_to_denali(mtd); int status = denali->status; + denali->status = 0; return status; @@ -1321,9 +1309,7 @@ static void denali_cmdfunc(struct mtd_info *mtd, unsigned int cmd, int col, index_addr(denali, addr | 0, 0x90); index_addr(denali, addr | 1, 0); for (i = 0; i < 8; i++) { - index_addr_read_data(denali, - addr | 2, - &id); + index_addr_read_data(denali, addr | 2, &id); write_byte_to_buf(denali, id); } break; @@ -1348,8 +1334,8 @@ static int denali_ecc_calculate(struct mtd_info *mtd, const uint8_t *data, uint8_t *ecc_code) { struct denali_nand_info *denali = mtd_to_denali(mtd); - dev_err(denali->dev, - "denali_ecc_calculate called unexpectedly\n"); + + dev_err(denali->dev, "denali_ecc_calculate called unexpectedly\n"); BUG(); return -EIO; } @@ -1358,8 +1344,8 @@ static int denali_ecc_correct(struct mtd_info *mtd, uint8_t *data, uint8_t *read_ecc, uint8_t *calc_ecc) { struct denali_nand_info *denali = mtd_to_denali(mtd); - dev_err(denali->dev, - "denali_ecc_correct called unexpectedly\n"); + + dev_err(denali->dev, "denali_ecc_correct called unexpectedly\n"); BUG(); return -EIO; } @@ -1367,8 +1353,8 @@ static int denali_ecc_correct(struct mtd_info *mtd, uint8_t *data, static void denali_ecc_hwctl(struct mtd_info *mtd, int mode) { struct denali_nand_info *denali = mtd_to_denali(mtd); - dev_err(denali->dev, - "denali_ecc_hwctl called unexpectedly\n"); + + dev_err(denali->dev, "denali_ecc_hwctl called unexpectedly\n"); BUG(); } /* end NAND core entry points */ @@ -1596,8 +1582,7 @@ int denali_init(struct denali_nand_info *denali) } else if (denali->mtd.oobsize < (denali->bbtskipbytes + ECC_8BITS * (denali->mtd.writesize / ECC_SECTOR_SIZE))) { - pr_err("Your NAND chip OOB is not large enough to \ - contain 8bit ECC correction codes"); + pr_err("Your NAND chip OOB is not large enough to contain 8bit ECC correction codes"); goto failed_req_irq; } else { denali->nand.ecc.strength = 8; @@ -1621,8 +1606,7 @@ int denali_init(struct denali_nand_info *denali) * contained by each nand chip. blksperchip will help driver to * know how many blocks is taken by FW. */ - denali->totalblks = denali->mtd.size >> - denali->nand.phys_erase_shift; + denali->totalblks = denali->mtd.size >> denali->nand.phys_erase_shift; denali->blksperchip = denali->totalblks / denali->nand.numchips; /* @@ -1669,7 +1653,7 @@ void denali_remove(struct denali_nand_info *denali) { denali_irq_cleanup(denali->irq, denali); dma_unmap_single(denali->dev, denali->buf.dma_buf, - denali->mtd.writesize + denali->mtd.oobsize, - DMA_BIDIRECTIONAL); + denali->mtd.writesize + denali->mtd.oobsize, + DMA_BIDIRECTIONAL); } EXPORT_SYMBOL(denali_remove); -- 1.9.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH v3 0/7] mtd: denali: A collection of trivial coding style fixes 2014-09-16 11:04 [PATCH v3 0/7] mtd: denali: A collection of trivial coding style fixes Masahiro Yamada ` (2 preceding siblings ...) 2014-09-16 11:04 ` [PATCH v3 7/7] mtd: denali: fix indents and other trivial things Masahiro Yamada @ 2014-09-17 17:13 ` Brian Norris 2014-09-18 2:31 ` Masahiro Yamada 2014-09-19 17:00 ` Brian Norris 4 siblings, 1 reply; 9+ messages in thread From: Brian Norris @ 2014-09-17 17:13 UTC (permalink / raw) To: Masahiro Yamada Cc: Jiri Kosina, David Woodhouse, linux-kernel, Josh Triplett, Rashika Kheria, linux-mtd, grmoore@altera.com, Huang Shijie On Tue, Sep 16, 2014 at 08:04:18PM +0900, Masahiro Yamada wrote: > > > Masahiro Yamada (7): > mtd: denali: fix the format of comment blocks > mtd: denali: remove unnecessary variable initializations > mtd: denali: remove unnecessary casts > mtd: denali: change the type of iterators to int > mtd: denali: remove a set-but-unused variable > mtd: denali: remove unnecessary parentheses > mtd: denali: fix indents and other trivial things This series still doesn't apply to l2-mtd.git. Brian ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3 0/7] mtd: denali: A collection of trivial coding style fixes 2014-09-17 17:13 ` [PATCH v3 0/7] mtd: denali: A collection of trivial coding style fixes Brian Norris @ 2014-09-18 2:31 ` Masahiro Yamada 2014-09-18 3:03 ` Brian Norris 0 siblings, 1 reply; 9+ messages in thread From: Masahiro Yamada @ 2014-09-18 2:31 UTC (permalink / raw) To: Brian Norris Cc: Jiri Kosina, grmoore@altera.com, linux-kernel, Josh Triplett, Rashika Kheria, linux-mtd, Huang Shijie, David Woodhouse Hi Brian, On Wed, 17 Sep 2014 10:13:08 -0700 Brian Norris <computersforpeace@gmail.com> wrote: > On Tue, Sep 16, 2014 at 08:04:18PM +0900, Masahiro Yamada wrote: > > > > > > Masahiro Yamada (7): > > mtd: denali: fix the format of comment blocks > > mtd: denali: remove unnecessary variable initializations > > mtd: denali: remove unnecessary casts > > mtd: denali: change the type of iterators to int > > mtd: denali: remove a set-but-unused variable > > mtd: denali: remove unnecessary parentheses > > mtd: denali: fix indents and other trivial things > > This series still doesn't apply to l2-mtd.git. > > Brian I resent the last three patches as v3. v3 5/7 mtd: denali: remove a set-but-unused variable v3 6/7 mtd: denali: remove unnecessary parentheses v3 7/7 mtd: denali: fix indents and other trivial things I confirmed they are applicable onto commit 93e3c8adf6fcf2204ca334237b92c7f8cdafce6f of l2-mtd.git You said as follow: On Mon, 15 Sep 2014 22:07:32 -0700 Brian Norris <computersforpeace@gmail.com> wrote: > > Is there a chance for me to resend 5/7 to include this fix? > > Or is it too late? > > Just send a new patch, please. That's why I sent a new patch (v3 5/7) to replace commit 55ab9ec99bbfb4450dfa9bc0fd9e2c5052f4c3f7 Did I do wrong? Best Regards Masahiro Yamada ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3 0/7] mtd: denali: A collection of trivial coding style fixes 2014-09-18 2:31 ` Masahiro Yamada @ 2014-09-18 3:03 ` Brian Norris 0 siblings, 0 replies; 9+ messages in thread From: Brian Norris @ 2014-09-18 3:03 UTC (permalink / raw) To: Masahiro Yamada Cc: Jiri Kosina, grmoore@altera.com, linux-kernel, Josh Triplett, Rashika Kheria, linux-mtd, Huang Shijie, David Woodhouse On Thu, Sep 18, 2014 at 11:31:35AM +0900, Masahiro Yamada wrote: > On Wed, 17 Sep 2014 10:13:08 -0700 Brian Norris <computersforpeace@gmail.com> wrote: > > On Tue, Sep 16, 2014 at 08:04:18PM +0900, Masahiro Yamada wrote: > > > Masahiro Yamada (7): > > > mtd: denali: fix the format of comment blocks > > > mtd: denali: remove unnecessary variable initializations > > > mtd: denali: remove unnecessary casts > > > mtd: denali: change the type of iterators to int > > > mtd: denali: remove a set-but-unused variable > > > mtd: denali: remove unnecessary parentheses > > > mtd: denali: fix indents and other trivial things > > > > This series still doesn't apply to l2-mtd.git. > > I resent the last three patches as v3. > > v3 5/7 mtd: denali: remove a set-but-unused variable > v3 6/7 mtd: denali: remove unnecessary parentheses > v3 7/7 mtd: denali: fix indents and other trivial things > > I confirmed they are applicable onto > commit 93e3c8adf6fcf2204ca334237b92c7f8cdafce6f > of l2-mtd.git > > You said as follow: > > On Mon, 15 Sep 2014 22:07:32 -0700 > Brian Norris <computersforpeace@gmail.com> wrote: > > > > Is there a chance for me to resend 5/7 to include this fix? > > > Or is it too late? > > > > Just send a new patch, please. I mean "a new patch [on top of l2-mtd.git]", but I see that wasn't clear. > That's why I sent a new patch (v3 5/7) to replace > commit 55ab9ec99bbfb4450dfa9bc0fd9e2c5052f4c3f7 > > > Did I do wrong? Eh, just miscommunication from my end. I don't like to back out patches for no good reason, but I suppose I can back out patch 5/7 v2, and look at applying v3 instead. Brian ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3 0/7] mtd: denali: A collection of trivial coding style fixes 2014-09-16 11:04 [PATCH v3 0/7] mtd: denali: A collection of trivial coding style fixes Masahiro Yamada ` (3 preceding siblings ...) 2014-09-17 17:13 ` [PATCH v3 0/7] mtd: denali: A collection of trivial coding style fixes Brian Norris @ 2014-09-19 17:00 ` Brian Norris 2014-09-22 1:15 ` Masahiro Yamada 4 siblings, 1 reply; 9+ messages in thread From: Brian Norris @ 2014-09-19 17:00 UTC (permalink / raw) To: Masahiro Yamada Cc: Jiri Kosina, David Woodhouse, linux-kernel, Josh Triplett, Rashika Kheria, linux-mtd, grmoore@altera.com, Huang Shijie On Tue, Sep 16, 2014 at 08:04:18PM +0900, Masahiro Yamada wrote: > > > Masahiro Yamada (7): > mtd: denali: fix the format of comment blocks > mtd: denali: remove unnecessary variable initializations > mtd: denali: remove unnecessary casts > mtd: denali: change the type of iterators to int I already merged these 4. > mtd: denali: remove a set-but-unused variable This one was merged but you changed it (and falsely kept the 'Reviewed-by' tag). So I split it out into its own patch and dropped the 'Reviewed-by'. > mtd: denali: remove unnecessary parentheses > mtd: denali: fix indents and other trivial things Applied a modified version of the last three, to l2-mtd.git. Feel free to check my work, but git tells me that the end result is identical. > drivers/mtd/nand/denali.c | 558 +++++++++++++++++++++++++--------------------- > 1 file changed, 301 insertions(+), 257 deletions(-) > Brian ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v3 0/7] mtd: denali: A collection of trivial coding style fixes 2014-09-19 17:00 ` Brian Norris @ 2014-09-22 1:15 ` Masahiro Yamada 0 siblings, 0 replies; 9+ messages in thread From: Masahiro Yamada @ 2014-09-22 1:15 UTC (permalink / raw) To: Brian Norris Cc: Jiri Kosina, David Woodhouse, linux-kernel, Josh Triplett, Rashika Kheria, linux-mtd, grmoore@altera.com, Huang Shijie Hi Brian, On Fri, 19 Sep 2014 10:00:20 -0700 Brian Norris <computersforpeace@gmail.com> wrote: > On Tue, Sep 16, 2014 at 08:04:18PM +0900, Masahiro Yamada wrote: > > > > > > Masahiro Yamada (7): > > mtd: denali: fix the format of comment blocks > > mtd: denali: remove unnecessary variable initializations > > mtd: denali: remove unnecessary casts > > mtd: denali: change the type of iterators to int > > I already merged these 4. > > > mtd: denali: remove a set-but-unused variable > > This one was merged but you changed it (and falsely kept the > 'Reviewed-by' tag). So I split it out into its own patch and dropped the > 'Reviewed-by'. > > > mtd: denali: remove unnecessary parentheses > > mtd: denali: fix indents and other trivial things > > Applied a modified version of the last three, to l2-mtd.git. Feel free > to check my work, but git tells me that the end result is identical. Everything looks good. Many thanks!! Best Regards Masahiro Yamada ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2014-09-22 1:17 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2014-09-16 11:04 [PATCH v3 0/7] mtd: denali: A collection of trivial coding style fixes Masahiro Yamada 2014-09-16 11:04 ` [PATCH v3 5/7] mtd: denali: remove a set-but-unused variable Masahiro Yamada 2014-09-16 11:04 ` [PATCH v3 6/7] mtd: denali: remove unnecessary parentheses Masahiro Yamada 2014-09-16 11:04 ` [PATCH v3 7/7] mtd: denali: fix indents and other trivial things Masahiro Yamada 2014-09-17 17:13 ` [PATCH v3 0/7] mtd: denali: A collection of trivial coding style fixes Brian Norris 2014-09-18 2:31 ` Masahiro Yamada 2014-09-18 3:03 ` Brian Norris 2014-09-19 17:00 ` Brian Norris 2014-09-22 1:15 ` Masahiro Yamada
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).