All of lore.kernel.org
 help / color / mirror / Atom feed
From: srinivas.kandagatla@linaro.org (Srinivas Kandagatla)
To: linux-arm-kernel@lists.infradead.org
Subject: [RFC PATCH] nvmem: rockchip_efuse_regmap_config can be static
Date: Wed, 30 Sep 2015 14:54:12 +0100	[thread overview]
Message-ID: <560BE984.8010101@linaro.org> (raw)
In-Reply-To: <20150930134606.GA19541@lkp-nex05>

Wow.. so fast :-)

Patch looks good to me.

Acked-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>

On 30/09/15 14:46, kbuild test robot wrote:
>
> Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
> ---
>   rockchip-efuse.c |    6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/nvmem/rockchip-efuse.c b/drivers/nvmem/rockchip-efuse.c
> index 7887070..f552134 100644
> --- a/drivers/nvmem/rockchip-efuse.c
> +++ b/drivers/nvmem/rockchip-efuse.c
> @@ -101,7 +101,7 @@ static struct regmap_bus rockchip_efuse_bus = {
>   	.val_format_endian_default = REGMAP_ENDIAN_NATIVE,
>   };
>
> -struct regmap_config rockchip_efuse_regmap_config = {
> +static struct regmap_config rockchip_efuse_regmap_config = {
>   	.reg_bits = 32,
>   	.reg_stride = 1,
>   	.val_bits = 8,
> @@ -119,7 +119,7 @@ static const struct of_device_id rockchip_efuse_match[] = {
>   };
>   MODULE_DEVICE_TABLE(of, rockchip_efuse_match);
>
> -int rockchip_efuse_probe(struct platform_device *pdev)
> +static int rockchip_efuse_probe(struct platform_device *pdev)
>   {
>   	struct device *dev = &pdev->dev;
>   	struct resource *res;
> @@ -165,7 +165,7 @@ int rockchip_efuse_probe(struct platform_device *pdev)
>   	return 0;
>   }
>
> -int rockchip_efuse_remove(struct platform_device *pdev)
> +static int rockchip_efuse_remove(struct platform_device *pdev)
>   {
>   	struct nvmem_device *nvmem = platform_get_drvdata(pdev);
>
>

WARNING: multiple messages have this Message-ID (diff)
From: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
To: kbuild test robot <lkp@intel.com>,
	kbuild test robot <fengguang.wu@intel.com>
Cc: kbuild-all@01.org, gregkh@linuxfoundation.org,
	maxime.ripard@free-electrons.com, linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	ZhengShunQian <zhengsq@rock-chips.com>,
	Caesar Wang <caesar.wang@rock-chips.com>
Subject: Re: [RFC PATCH] nvmem: rockchip_efuse_regmap_config can be static
Date: Wed, 30 Sep 2015 14:54:12 +0100	[thread overview]
Message-ID: <560BE984.8010101@linaro.org> (raw)
In-Reply-To: <20150930134606.GA19541@lkp-nex05>

Wow.. so fast :-)

Patch looks good to me.

Acked-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>

On 30/09/15 14:46, kbuild test robot wrote:
>
> Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
> ---
>   rockchip-efuse.c |    6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/nvmem/rockchip-efuse.c b/drivers/nvmem/rockchip-efuse.c
> index 7887070..f552134 100644
> --- a/drivers/nvmem/rockchip-efuse.c
> +++ b/drivers/nvmem/rockchip-efuse.c
> @@ -101,7 +101,7 @@ static struct regmap_bus rockchip_efuse_bus = {
>   	.val_format_endian_default = REGMAP_ENDIAN_NATIVE,
>   };
>
> -struct regmap_config rockchip_efuse_regmap_config = {
> +static struct regmap_config rockchip_efuse_regmap_config = {
>   	.reg_bits = 32,
>   	.reg_stride = 1,
>   	.val_bits = 8,
> @@ -119,7 +119,7 @@ static const struct of_device_id rockchip_efuse_match[] = {
>   };
>   MODULE_DEVICE_TABLE(of, rockchip_efuse_match);
>
> -int rockchip_efuse_probe(struct platform_device *pdev)
> +static int rockchip_efuse_probe(struct platform_device *pdev)
>   {
>   	struct device *dev = &pdev->dev;
>   	struct resource *res;
> @@ -165,7 +165,7 @@ int rockchip_efuse_probe(struct platform_device *pdev)
>   	return 0;
>   }
>
> -int rockchip_efuse_remove(struct platform_device *pdev)
> +static int rockchip_efuse_remove(struct platform_device *pdev)
>   {
>   	struct nvmem_device *nvmem = platform_get_drvdata(pdev);
>
>

  reply	other threads:[~2015-09-30 13:54 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-30 12:53 [PATCH 0/8] nvmem: new drivers for v4.4 Srinivas Kandagatla
2015-09-30 12:53 ` Srinivas Kandagatla
2015-09-30 12:54 ` [PATCH 1/8] nvmem: Add DT binding documentation for Vybrid OCOTP driver Srinivas Kandagatla
2015-09-30 12:54   ` Srinivas Kandagatla
2015-09-30 12:54 ` [PATCH 2/8] nvmem: Add Vybrid OCOTP support Srinivas Kandagatla
2015-09-30 12:54   ` Srinivas Kandagatla
2015-09-30 12:55 ` [PATCH 3/8] nvmem: Add i.MX6 OCOTP device tree binding documentation Srinivas Kandagatla
2015-09-30 12:55   ` Srinivas Kandagatla
2015-09-30 12:55 ` [PATCH 4/8] nvmem: imx-ocotp: Add i.MX6 OCOTP driver Srinivas Kandagatla
2015-09-30 12:55   ` Srinivas Kandagatla
2015-09-30 12:56 ` [PATCH 5/8] nvmem: add binding for mxs-ocotp Srinivas Kandagatla
2015-09-30 12:56   ` Srinivas Kandagatla
2015-09-30 12:56 ` [PATCH 6/8] nvmem: add driver for ocotp in i.MX23 and i.MX28 Srinivas Kandagatla
2015-09-30 12:56   ` Srinivas Kandagatla
2015-09-30 12:56 ` [PATCH 7/8] nvmem: rockchip-efuse: describe the usage of eFuse Srinivas Kandagatla
2015-09-30 12:56   ` Srinivas Kandagatla
2015-09-30 12:56 ` [PATCH 8/8] nvmem: Adding bindings for rockchip-efuse Srinivas Kandagatla
2015-09-30 12:56   ` Srinivas Kandagatla
2015-09-30 13:46   ` kbuild test robot
2015-09-30 13:46     ` kbuild test robot
2015-09-30 13:46   ` [RFC PATCH] nvmem: rockchip_efuse_regmap_config can be static kbuild test robot
2015-09-30 13:46     ` kbuild test robot
2015-09-30 13:54     ` Srinivas Kandagatla [this message]
2015-09-30 13:54       ` Srinivas Kandagatla

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=560BE984.8010101@linaro.org \
    --to=srinivas.kandagatla@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.