On Sat, Mar 28, 2020 at 2:12 AM Saravanan Sekar <sravanhome@xxxxxxxxx> wrote:Really not for processed
The mp2629 provides switching-mode battery charge management for...
single-cell Li-ion or Li-polymer battery. Driver supports the
access/control input source and battery charging parameters.
+#include <linux/module.h>Missed header bits.h.
+#include <linux/of_device.h>
...
+ ret = iio_read_channel_processed(charger->iiochan[ch], &chval);Is it possible to get positive returned value?
+ if (ret < 0)
I think I misunderstood you previous review comment "Redundant parentheses", no sure what is the expectation+ return ret;...
+ val->intval = (rval * props[fld].step) + props[fld].min;Too many parentheses.
...
+ return ((psp == POWER_SUPPLY_PROP_PRECHARGE_CURRENT) ||Ditto.
+ (psp == POWER_SUPPLY_PROP_CHARGE_TERM_CURRENT) ||
+ (psp == POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT) ||
+ (psp == POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE));
Done
...
+ return ((psp == POWER_SUPPLY_PROP_INPUT_VOLTAGE_LIMIT) ||Ditto.
+ (psp == POWER_SUPPLY_PROP_INPUT_CURRENT_LIMIT));
...
+ return sprintf(buf, "%d mohm\n", rval);Hmm... For units we usually have separate node, but it is up to
maintainer, I dunno what the common practice is there.
...
+ int val;What the point to convert negative values in the first place? kstrtouint()
+ int ret;
+
+ ret = kstrtoint(buf, 10, &val);
+ if (ret)
+ return ret;
+
+ if (val < 0 && val > 140)
NULL to make compiler happy.+ return -ERANGE;...
+ struct power_supply_config psy_cfg = {NULL};{ 0 }