Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1703749 > unrolled thread
| Started by | Boris Brezillon <boris.brezillon@free-electrons.com> |
|---|---|
| First post | 2017-08-04 09:50 +0200 |
| Last post | 2017-08-04 09:50 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH v2 09/25] mtd: nand: qcom: remove memset for clearing read register buffer Boris Brezillon <boris.brezillon@free-electrons.com> - 2017-08-04 09:50 +0200
| From | Boris Brezillon <boris.brezillon@free-electrons.com> |
|---|---|
| Date | 2017-08-04 09:50 +0200 |
| Subject | Re: [PATCH v2 09/25] mtd: nand: qcom: remove memset for clearing read register buffer |
| Message-ID | <uaFwR-47W-1@gated-at.bofh.it> |
On Wed, 19 Jul 2017 17:17:57 +0530
Abhishek Sahu <absahu@codeaurora.org> wrote:
> The memset in clear_read_regs is overhead. All the register data
> will be filled by DMA during NAND operation so making these
> register variables zero is not required.
>
Applied.
Thanks,
Boris
> Signed-off-by: Abhishek Sahu <absahu@codeaurora.org>
> ---
> drivers/mtd/nand/qcom_nandc.c | 2 --
> 1 file changed, 2 deletions(-)
>
> diff --git a/drivers/mtd/nand/qcom_nandc.c b/drivers/mtd/nand/qcom_nandc.c
> index 5b71478..7ecd0f8 100644
> --- a/drivers/mtd/nand/qcom_nandc.c
> +++ b/drivers/mtd/nand/qcom_nandc.c
> @@ -826,8 +826,6 @@ static void free_descs(struct qcom_nand_controller *nandc)
> static void clear_read_regs(struct qcom_nand_controller *nandc)
> {
> nandc->reg_read_pos = 0;
> - memset(nandc->reg_read_buf, 0,
> - MAX_REG_RD * sizeof(*nandc->reg_read_buf));
> }
>
> static void pre_command(struct qcom_nand_host *host, int command)
Back to top | Article view | linux.kernel
csiph-web