doc: nvmem: Update example
Update the example to reflect the new API. I have chosen the brcm-nvram driver since it seems to be simpler than the qfprom driver. Signed-off-by: Sean Anderson <sean.anderson@seco.com> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Link: https://lore.kernel.org/r/20220220151527.17216-12-srinivas.kandagatla@linaro.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
673d2cc5c1
commit
671aa5a4d4
|
@ -43,19 +43,20 @@ nvmem_device pointer.
|
||||||
|
|
||||||
nvmem_unregister(nvmem) is used to unregister a previously registered provider.
|
nvmem_unregister(nvmem) is used to unregister a previously registered provider.
|
||||||
|
|
||||||
For example, a simple qfprom case::
|
For example, a simple nvram case::
|
||||||
|
|
||||||
static struct nvmem_config econfig = {
|
static int brcm_nvram_probe(struct platform_device *pdev)
|
||||||
.name = "qfprom",
|
|
||||||
.owner = THIS_MODULE,
|
|
||||||
};
|
|
||||||
|
|
||||||
static int qfprom_probe(struct platform_device *pdev)
|
|
||||||
{
|
{
|
||||||
|
struct nvmem_config config = {
|
||||||
|
.name = "brcm-nvram",
|
||||||
|
.reg_read = brcm_nvram_read,
|
||||||
|
};
|
||||||
...
|
...
|
||||||
econfig.dev = &pdev->dev;
|
config.dev = &pdev->dev;
|
||||||
nvmem = nvmem_register(&econfig);
|
config.priv = priv;
|
||||||
...
|
config.size = resource_size(res);
|
||||||
|
|
||||||
|
devm_nvmem_register(&config);
|
||||||
}
|
}
|
||||||
|
|
||||||
Users of board files can define and register nvmem cells using the
|
Users of board files can define and register nvmem cells using the
|
||||||
|
|
Loading…
Reference in New Issue