1
0
Fork 0

nvmem: rockchip_efuse_regmap_config can be static

Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Acked-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
steinar/wifi_calib_4_9_kernel
kbuild test robot 2015-09-30 21:46:06 +08:00 committed by Greg Kroah-Hartman
parent 03a69568e0
commit 7e532f7925
1 changed files with 3 additions and 3 deletions

View File

@ -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);