lkml.org 
[lkml]   [2015]   [Mar]   [5]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [PATCH v2] mfd: Add specific compatible strings for Qualcomm's SPMI PMIC's
From
Date

On Wed, 2015-03-04 at 11:01 -0800, Stephen Boyd wrote:
> On 03/04/15 02:19, Ivan T. Ivanov wrote:
> > diff --git a/drivers/mfd/qcom-spmi-pmic.c b/drivers/mfd/qcom-spmi-pmic.c
> > index 4b8beb2..a1af4e5 100644
> > --- a/drivers/mfd/qcom-spmi-pmic.c
> > +++ b/drivers/mfd/qcom-spmi-pmic.c
> >
> > +
> > +static void pmic_spmi_show_revid(struct regmap *map, struct device *dev)
> > +{
> > + unsigned int rev2, minor, major, type, subtype;
> > + int ret;
> > +
> > + ret = regmap_read(map, PMIC_TYPE, &type);
> > + if (ret < 0)
> > + return;
> > +
> > + if (type != PMIC_TYPE_VALUE)
> > + return;
> > +
> > + ret = regmap_read(map, PMIC_SUBTYPE, &subtype);
> > + if (ret < 0)
> > + return;
> > +
> > + if (subtype > ARRAY_SIZE(pmic_spmi_id_table))
> > + return;
> > +
> > + rev2 = regmap_read(map, PMIC_REV2, &rev2);
>
> ret = ?

Ouch. will fix.

>
> >
> > +
> > + dev_info(dev, "%s-v%d.%d detected\n",
> > + pmic_spmi_id_table[subtype].compatible, major, minor);
> > +}
> >
>
> I wonder if this should be dev_dbg.

It is not so much verbose, right? I could cut "detected". I will like to keep it.

Thanks,
Ivan


\
 
 \ /
  Last update: 2015-03-05 09:21    [W:0.065 / U:0.216 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site