Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1276023

Re: [PATCH RESEND 06/16] mfd: add TI LMU driver

From "Kim, Milo" <milo.kim@ti.com>
Newsgroups linux.kernel
Subject Re: [PATCH RESEND 06/16] mfd: add TI LMU driver
Date 2015-11-24 03:40 +0100
Message-ID <qybGp-1Y4-5@gated-at.bofh.it> (permalink)
References <qqfQR-1lO-5@gated-at.bofh.it> <qqfQS-1lO-33@gated-at.bofh.it> <qxWHo-x4-7@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Hi Lee,

Thanks for all your comments. Please see my comments below.

On 11/23/2015 7:30 PM, Lee Jones wrote:
>> +int ti_lmu_read_byte(struct ti_lmu *lmu, u8 reg, u8 *read)
>> >+{
>> >+	int ret;
>> >+	unsigned int val;
>> >+
>> >+	ret = regmap_read(lmu->regmap, reg, &val);
>> >+	if (ret < 0)
>> >+		return ret;
>> >+
>> >+	*read = (u8)val;
>> >+	return 0;
>> >+}
>> >+EXPORT_SYMBOL_GPL(ti_lmu_read_byte);
> It doesn't get much more simple than this.
>
> What's the purpose of abstracting it?
>
>> >+int ti_lmu_write_byte(struct ti_lmu *lmu, u8 reg, u8 data)
>> >+{
>> >+	return regmap_write(lmu->regmap, reg, data);
>> >+}
>> >+EXPORT_SYMBOL_GPL(ti_lmu_write_byte);
>> >+
>> >+int ti_lmu_update_bits(struct ti_lmu *lmu, u8 reg, u8 mask, u8 data)
>> >+{
>> >+	return regmap_update_bits(lmu->regmap, reg, mask, data);
>> >+}
>> >+EXPORT_SYMBOL_GPL(ti_lmu_update_bits);
> Okay, I lied, it does get more simple.
>
> Seems like abstraction for the sake of abstraction here.
>
> Feel free to try and convince me otherwise.
>

The main reason was that LMU MFD core provides consistent register 
access among LMU drivers like ti-lmu-backlight, leds-lm3633, 
lm363x-regulator and ti-lmu-fault-monitor('ti-lmu-hwmon' will be changed 
to this in the 2nd patch).

However, LMU register helpers are exactly same as regmap interface 
except using ti_lmu data structure. So let me replace them with regmap 
functions. Thanks for pointing this out.

Best regards,
Milo
--
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/

Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread


Thread

Re: [PATCH RESEND 06/16] mfd: add TI LMU driver Lee Jones <lee.jones@linaro.org> - 2015-11-23 11:40 +0100
  Re: [PATCH RESEND 06/16] mfd: add TI LMU driver "Kim, Milo" <milo.kim@ti.com> - 2015-11-24 03:40 +0100
    Re: [PATCH RESEND 06/16] mfd: add TI LMU driver "Kim, Milo" <milo.kim@ti.com> - 2015-11-24 07:50 +0100
      Re: [PATCH RESEND 06/16] mfd: add TI LMU driver Lee Jones <lee.jones@linaro.org> - 2015-11-24 09:20 +0100
        Re: [PATCH RESEND 06/16] mfd: add TI LMU driver "Kim, Milo" <milo.kim@ti.com> - 2015-11-25 09:20 +0100
          Re: [PATCH RESEND 06/16] mfd: add TI LMU driver Lee Jones <lee.jones@linaro.org> - 2015-11-25 09:20 +0100

csiph-web