From patchwork Fri Jul 24 16:03:14 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Krzysztof Kozlowski X-Patchwork-Id: 11683545 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 5D4DE618 for ; Fri, 24 Jul 2020 16:03:56 +0000 (UTC) Received: by mail.kernel.org (Postfix) id 55A2F206C1; Fri, 24 Jul 2020 16:03:56 +0000 (UTC) Delivered-To: soc@kernel.org Received: from kozik-lap.mshome.net (unknown [194.230.155.213]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 6335A2065E; Fri, 24 Jul 2020 16:03:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1595606636; bh=HrxOYsA3BSQMN0aCDa5MA5n2ewhVxZuNTsN4FU6MNBk=; h=From:List-Id:To:Cc:Subject:Date:From; b=xfkRhUC5oc30uRXpm52z3HyLOAmNCL2d/TXqTVg9WMWSFcbtVOw+/lxdJXypN22Xx x/TzVOYEUUC7D1r+XbS44NKU6nQXCbRSTBCRnd95l6iRbkDkQlmNR5z0QHXkOlClzL pvQuadJCVbRO654a94yytcfrxfaQ0NbH9IxiDT30= From: Krzysztof Kozlowski List-Id: To: Olof Johansson , Arnd Bergmann , arm@kernel.org, soc@kernel.org Cc: Krzysztof Kozlowski , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [GIT PULL] memory: Cleanups of memory controller drivers for v5.9 Date: Fri, 24 Jul 2020 18:03:14 +0200 Message-Id: <20200724160314.8543-1-krzk@kernel.org> X-Mailer: git-send-email 2.17.1 Hi, First part of my patchset, with non-intrusive changes + maintainership. Best regards, Krzysztof The following changes since commit b3a9e3b9622ae10064826dccb4f7a52bd88c7407: Linux 5.8-rc1 (2020-06-14 12:45:04 -0700) are available in the Git repository at: https://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git tags/memory-controller-drv-5.9 for you to fetch changes up to 8a9ff875815944046903199e94eb6127dc0b22c1: MAINTAINERS: Add Krzysztof Kozlowski as maintainer of memory controllers (2020-07-24 16:20:12 +0200) ---------------------------------------------------------------- Memory controller drivers for v5.9 The drivers/memory directory with memory controller drivers, over the last days grew in numbers but lacked any coordinated care. The generic part (device tree helpers) were pulled in through various trees, depending on driver needs. The patchset is a first try to improve code quality of memory controller drivers. Mostly these are non-intrusive fixes for GCC, checkpatch or sparse warnings. This also fixes missing SPDX tags or improves generic code quality (whitespace, const correctness). Last commit appoints also Krzysztof Kozlowski as a maintainer. ---------------------------------------------------------------- Krzysztof Kozlowski (22): memory: samsung: exynos5422-dmc: Do not ignore return code of regmap_read() memory: of: Remove unused headers memory: of: Remove __func__ in device related messages memory: of: Correct indentation memory: of: Remove unneeded extern from function declarations memory: emif-asm-offsets: Add GPLv2 SPDX license header memory: emif: Put constant in comparison on the right side memory: emif: Fix whitespace coding style violations memory: emif: Silence platform_get_irq() error in driver memory: ti-aemif: Rename SS to SSTROBE to avoid name conflicts memory: ti-emif-pm: Fix cast to iomem pointer memory: brcmstb_dpfe: Constify the contents of string memory: brcmstb_dpfe: Remove unneeded braces memory: mtk-smi: Add argument to function pointer definition memory: omap-gpmc: Include for SZ_16M memory: omap-gpmc: Fix whitespace issue memory: pl172: Add GPLv2 SPDX license header memory: fsl_ifc: Fix whitespace issues memory: da8xx-ddrctl: Remove unused 'node' variable memory: Describe the MEMORY Kconfig entry memory: samsung: exynos-srom: Describe the Kconfig entry MAINTAINERS: Add Krzysztof Kozlowski as maintainer of memory controllers MAINTAINERS | 7 +++++++ drivers/memory/Kconfig | 6 ++++++ drivers/memory/brcmstb_dpfe.c | 5 ++--- drivers/memory/da8xx-ddrctl.c | 2 -- drivers/memory/emif-asm-offsets.c | 10 +--------- drivers/memory/emif.c | 23 +++++++++-------------- drivers/memory/fsl_ifc.c | 30 +++++++++++++++--------------- drivers/memory/mtk-smi.c | 2 +- drivers/memory/of_memory.c | 28 ++++++++++++++-------------- drivers/memory/of_memory.h | 21 +++++++++++---------- drivers/memory/omap-gpmc.c | 8 +++++--- drivers/memory/pl172.c | 5 +---- drivers/memory/samsung/Kconfig | 7 +++++++ drivers/memory/samsung/exynos5422-dmc.c | 12 +++++++++--- drivers/memory/ti-aemif.c | 16 ++++++++-------- drivers/memory/ti-emif-pm.c | 2 +- 16 files changed, 97 insertions(+), 87 deletions(-)