Re: [PATCH v5 07/11] nvmem: Add simple nvmem-mmio consumer helper functions.

2015-06-18 Thread Srinivas Kandagatla
On 16/06/15 23:58, Stephen Boyd wrote: On 05/21/2015 09:44 AM, Srinivas Kandagatla wrote: diff --git a/drivers/nvmem/nvmem-mmio.c b/drivers/nvmem/nvmem-mmio.c new file mode 100644 index 000..0d8131f --- /dev/null +++ b/drivers/nvmem/nvmem-mmio.c @@ -0,0 +1,69 @@ +/* + * Copyright (C) 2015

Re: [PATCH v5 07/11] nvmem: Add simple nvmem-mmio consumer helper functions.

2015-06-16 Thread Stephen Boyd
On 05/21/2015 09:44 AM, Srinivas Kandagatla wrote: > diff --git a/drivers/nvmem/nvmem-mmio.c b/drivers/nvmem/nvmem-mmio.c > new file mode 100644 > index 000..0d8131f > --- /dev/null > +++ b/drivers/nvmem/nvmem-mmio.c > @@ -0,0 +1,69 @@ > +/* > + * Copyright (C) 2015 Srinivas Kandagatla > + * >

[PATCH v5 07/11] nvmem: Add simple nvmem-mmio consumer helper functions.

2015-05-21 Thread Srinivas Kandagatla
This patch adds probe and remove helper functions for nvmems which are mmio based, With these helper function new nvmem consumer drivers need very little code add its driver. This code is currently used for qfprom and sunxi-sid nvmem consumer drivers. Signed-off-by: Srinivas Kandagatla --- driv