Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1511322
| From | Mark Brown <broonie@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [RFC 12/14] regmap: SoundWire: Add regmap support for SoundWire bus |
| Date | 2016-10-28 20:10 +0200 |
| Message-ID | <sxjLj-3hO-9@gated-at.bofh.it> (permalink) |
| References | <suHqN-5zP-3@gated-at.bofh.it> <suHqO-5zP-39@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
[Multipart message — attachments visible in raw view] - view raw
On Fri, Oct 21, 2016 at 06:11:10PM +0530, Hardik Shah wrote:
> +static inline void get_t_size(size_t *t_val_size, size_t *t_size,
> + int *reg_addr,
> + int *offset,
> + size_t *val_size)
> +{
> +
> + *t_val_size += *t_size;
> + *offset += *t_size;
So, I started by taking a look at this patch to get a sense of what the
API would look like and I see that we're not following CodingStyle with
everything indented twice :(
> +static int regmap_sdw_gather_write(void *context,
> + const void *reg, size_t reg_size,
> + const void *val, size_t val_size)
> +{
> + if (!sdw)
> + return 0;
Silently ignoring errors :(
> + if (val_size > SDW_MAX_REG_ADDR)
> + t_size = SDW_MAX_REG_ADDR - reg_command;
> + else
> + t_size = val_size;
This needs at least some kind of comment?
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
Re: [RFC 12/14] regmap: SoundWire: Add regmap support for SoundWire bus Mark Brown <broonie@kernel.org> - 2016-10-28 20:10 +0200 Re: [RFC 12/14] regmap: SoundWire: Add regmap support for SoundWire bus Hardik Shah <hardik.t.shah@intel.com> - 2016-11-02 09:10 +0100
csiph-web