Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753865AbbGJKnJ (ORCPT ); Fri, 10 Jul 2015 06:43:09 -0400 Received: from smtprelay0148.hostedemail.com ([216.40.44.148]:43797 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752224AbbGJKnD (ORCPT ); Fri, 10 Jul 2015 06:43:03 -0400 X-Session-Marker: 6A6F6540706572636865732E636F6D X-Spam-Summary: 2,0,0,,d41d8cd98f00b204,joe@perches.com,:::::::::::::::::::::::::::::::::::,RULES_HIT:41:355:379:541:599:966:988:989:1260:1277:1311:1313:1314:1345:1359:1373:1437:1515:1516:1518:1534:1542:1593:1594:1711:1730:1747:1777:1792:2196:2198:2199:2200:2393:2559:2562:2693:2828:2899:2911:3138:3139:3140:3141:3142:3355:3622:3865:3866:3867:3868:3870:3872:4321:4385:4425:5007:6119:6261:6742:7875:7903:9707:10004:10400:10848:11026:11232:11473:11658:11914:12043:12296:12438:12517:12519:12740:13972:14096:14097:21080,0,RBL:none,CacheIP:none,Bayesian:0.5,0.5,0.5,Netcheck:none,DomainCache:0,MSF:not bulk,SPF:fn,MSBL:0,DNSBL:none,Custom_rules:0:0:0 X-HE-Tag: bat84_8e6718ac77262 X-Filterd-Recvd-Size: 3943 Message-ID: <1436524977.24866.31.camel@perches.com> Subject: Re: [PATCH v7 2/9] nvmem: Add a simple NVMEM framework for consumers From: Joe Perches To: Srinivas Kandagatla Cc: linux-arm-kernel@lists.infradead.org, Greg Kroah-Hartman , Rob Herring , Kumar Gala , Mark Brown , s.hauer@pengutronix.de, linux-api@vger.kernel.org, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, linux-arm-msm@vger.kernel.org, arnd@arndb.de, sboyd@codeaurora.org, pantelis.antoniou@konsulko.com, mporter@konsulko.com, stefan.wahren@i2se.com, wxt@rock-chips.com, Maxime Ripard Date: Fri, 10 Jul 2015 03:42:57 -0700 In-Reply-To: <1436521495-10728-1-git-send-email-srinivas.kandagatla@linaro.org> References: <1436521427-10568-1-git-send-email-srinivas.kandagatla@linaro.org> <1436521495-10728-1-git-send-email-srinivas.kandagatla@linaro.org> Content-Type: text/plain; charset="ISO-8859-1" X-Mailer: Evolution 3.12.11-0ubuntu3 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2689 Lines: 102 On Fri, 2015-07-10 at 10:44 +0100, Srinivas Kandagatla wrote: > This patch adds just consumers part of the framework just to enable easy > review. Trivial notes: > diff --git a/drivers/nvmem/core.c b/drivers/nvmem/core.c > @@ -334,6 +335,7 @@ struct nvmem_device *nvmem_register(struct nvmem_config *config) > if (config->cells) > nvmem_add_cells(nvmem, config); > > + superfluous newline > +static struct nvmem_cell *nvmem_cell_get_from_list(const char *cell_id) > +{ > + struct nvmem_cell *cell = NULL; > + struct nvmem_device *nvmem; > + > + nvmem = __nvmem_device_get(NULL, &cell, cell_id); > + if (IS_ERR(nvmem)) > + return ERR_CAST(nvmem); > + > + extra blank line here too > +/** > + * nvmem_cell_read() - Read a given nvmem cell > + * > + * @cell: nvmem cell to be read. > + * @len: pointer to length of cell which will be populated on successful read. > + * > + * The return value will be an ERR_PTR() on error or a valid pointer > + * to a char * bufffer. The buffer should be freed by the consumer with a One too many f's in buffer, it's returning a void * > + * kfree(). > + */ > +void *nvmem_cell_read(struct nvmem_cell *cell, size_t *len) > +{ > + struct nvmem_device *nvmem = cell->nvmem; > + u8 *buf; [] > + return buf; > +} > +EXPORT_SYMBOL_GPL(nvmem_cell_read); [] > +/** > + * nvmem_cell_write() - Write to a given nvmem cell > + * > + * @cell: nvmem cell to be written. > + * @buf: Buffer to be written. > + * @len: length of buffer to be written to nvmem cell. > + * > + * The return value will be an length of bytes written or non zero on failure. less than zero or maybe negative on failure? > + */ > +int nvmem_cell_write(struct nvmem_cell *cell, void *buf, size_t len) > +{ > + struct nvmem_device *nvmem = cell->nvmem; > + int rc; > + void *wbuf = buf; This variable and assignment seems unnecessary as buf could be reused. > + > + if (!nvmem || !nvmem->regmap || nvmem->read_only || > + (cell->bit_offset == 0 && len != cell->bytes)) > + return -EINVAL; > + > + if (cell->bit_offset || cell->nbits) { > + wbuf = nvmem_cell_prepare_write_buffer(cell, buf, len); > + if (IS_ERR(wbuf)) > + return PTR_ERR(wbuf); > + } > + > + rc = regmap_raw_write(nvmem->regmap, cell->offset, wbuf, cell->bytes); > + > + /* free the tmp buffer */ > + if (cell->bit_offset) > + kfree(wbuf); > + > + if (IS_ERR_VALUE(rc)) > + return rc; > + > + return len; > +} > +EXPORT_SYMBOL_GPL(nvmem_cell_write); -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/