mirror of
https://github.com/torvalds/linux.git
synced 2026-09-25 21:21:09 -04:00
Binding for fixed NVMEM cells defined directly as NVMEM device subnodes has been deprecated. It has been replaced by the "fixed-layout" NVMEM layout binding. New syntax is meant to be clearer and should help avoiding imprecise bindings. NVMEM subsystem already supports the new binding. It should be a good idea to limit support for old syntax to existing drivers that actually support & use it (we can't break backward compatibility!). That way we additionally encourage new bindings & drivers to ignore deprecated binding. It wasn't clear (to me) if rtc and w1 code actually uses old syntax fixed cells. I enabled them to don't risk any breakage. Signed-off-by: Rafał Miłecki <[email protected]> [for meson-{efuse,mx-efuse}.c] Acked-by: Martin Blumenstingl <[email protected]> [for mtk-efuse.c, nvmem/core.c, nvmem-provider.h] Reviewed-by: AngeloGioacchino Del Regno <[email protected]> [MT8192, MT8195 Chromebooks] Tested-by: AngeloGioacchino Del Regno <[email protected]> [for microchip-otpc.c] Reviewed-by: Claudiu Beznea <[email protected]> [SAMA7G5-EK] Tested-by: Claudiu Beznea <[email protected]> Acked-by: Jernej Skrabec <[email protected]> Signed-off-by: Srinivas Kandagatla <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
32 lines
752 B
C
32 lines
752 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* RTC subsystem, nvmem interface
|
|
*
|
|
* Copyright (C) 2017 Alexandre Belloni
|
|
*/
|
|
|
|
#include <linux/err.h>
|
|
#include <linux/types.h>
|
|
#include <linux/nvmem-consumer.h>
|
|
#include <linux/rtc.h>
|
|
|
|
int devm_rtc_nvmem_register(struct rtc_device *rtc,
|
|
struct nvmem_config *nvmem_config)
|
|
{
|
|
struct device *dev = rtc->dev.parent;
|
|
struct nvmem_device *nvmem;
|
|
|
|
if (!nvmem_config)
|
|
return -ENODEV;
|
|
|
|
nvmem_config->dev = dev;
|
|
nvmem_config->owner = rtc->owner;
|
|
nvmem_config->add_legacy_fixed_of_cells = true;
|
|
nvmem = devm_nvmem_register(dev, nvmem_config);
|
|
if (IS_ERR(nvmem))
|
|
dev_err(dev, "failed to register nvmem device for RTC\n");
|
|
|
|
return PTR_ERR_OR_ZERO(nvmem);
|
|
}
|
|
EXPORT_SYMBOL_GPL(devm_rtc_nvmem_register);
|