Message ID | 20190711222346.5245-3-lukma@denx.de (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | mfd: mc13xxx: Fixes and enhancements for NXP's mc34708 | expand |
On Fri, Jul 12, 2019 at 12:23:45AM +0200, Lukasz Majewski wrote: > From: Sascha Hauer <s.hauer@pengutronix.de> > > The platform data once was optional, make it optional again. This > is a first step towards device tree support for the mc13xxx touchscreen > driver. I would prefer seeing it together with patches introducing device tree support. Thanks.
Hi Dmitry, Thank you for your reply. > On Fri, Jul 12, 2019 at 12:23:45AM +0200, Lukasz Majewski wrote: > > From: Sascha Hauer <s.hauer@pengutronix.de> > > > > The platform data once was optional, make it optional again. This > > is a first step towards device tree support for the mc13xxx > > touchscreen driver. > > I would prefer seeing it together with patches introducing device tree > support. Ok, I will merge this patch to patch 3/3. > > Thanks. > Best regards, Lukasz Majewski -- DENX Software Engineering GmbH, Managing Director: Wolfgang Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-59 Fax: (+49)-8142-66989-80 Email: lukma@denx.de
On Mon, Jul 15, 2019 at 10:43:44AM +0200, Lukasz Majewski wrote: > Hi Dmitry, > > Thank you for your reply. > > > On Fri, Jul 12, 2019 at 12:23:45AM +0200, Lukasz Majewski wrote: > > > From: Sascha Hauer <s.hauer@pengutronix.de> > > > > > > The platform data once was optional, make it optional again. This > > > is a first step towards device tree support for the mc13xxx > > > touchscreen driver. > > > > I would prefer seeing it together with patches introducing device tree > > support. > > Ok, I will merge this patch to patch 3/3. Uh, I must be missing something, but I do not see anything dedicated to device tree handling in 3/3... Thanks.
Hi Dmitry, > On Mon, Jul 15, 2019 at 10:43:44AM +0200, Lukasz Majewski wrote: > > Hi Dmitry, > > > > Thank you for your reply. > > > > > On Fri, Jul 12, 2019 at 12:23:45AM +0200, Lukasz Majewski wrote: > > > > From: Sascha Hauer <s.hauer@pengutronix.de> > > > > > > > > The platform data once was optional, make it optional again. > > > > This is a first step towards device tree support for the mc13xxx > > > > touchscreen driver. > > > > > > I would prefer seeing it together with patches introducing device > > > tree support. > > > > Ok, I will merge this patch to patch 3/3. > > Uh, I must be missing something, but I do not see anything dedicated > to device tree handling in 3/3... Yes, you are right - the 3/3 adds only IDs for mc34708 device. The device tree conversion/handling is not planned for now. Patches, which I've sent in this series, allow the mc34708 device to be usable with contemporary kernel (e.g. 5.2). > > Thanks. > Best regards, Lukasz Majewski -- DENX Software Engineering GmbH, Managing Director: Wolfgang Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-59 Fax: (+49)-8142-66989-80 Email: lukma@denx.de
diff --git a/drivers/input/touchscreen/mc13783_ts.c b/drivers/input/touchscreen/mc13783_ts.c index ae0d978c83bf..edd49e44e0c9 100644 --- a/drivers/input/touchscreen/mc13783_ts.c +++ b/drivers/input/touchscreen/mc13783_ts.c @@ -35,7 +35,8 @@ struct mc13783_ts_priv { struct mc13xxx *mc13xxx; struct delayed_work work; unsigned int sample[4]; - struct mc13xxx_ts_platform_data *touch; + u8 ato; + bool atox; }; static irqreturn_t mc13783_ts_handler(int irq, void *data) @@ -125,7 +126,7 @@ static void mc13783_ts_work(struct work_struct *work) if (mc13xxx_adc_do_conversion(priv->mc13xxx, mode, channel, - priv->touch->ato, priv->touch->atox, + priv->ato, priv->atox, priv->sample) == 0) mc13783_ts_report_sample(priv); } @@ -169,6 +170,7 @@ static void mc13783_ts_close(struct input_dev *dev) static int __init mc13783_ts_probe(struct platform_device *pdev) { struct mc13783_ts_priv *priv; + struct mc13xxx_ts_platform_data *pdata = dev_get_platdata(&pdev->dev); struct input_dev *idev; int ret = -ENOMEM; @@ -180,11 +182,10 @@ static int __init mc13783_ts_probe(struct platform_device *pdev) INIT_DELAYED_WORK(&priv->work, mc13783_ts_work); priv->mc13xxx = dev_get_drvdata(pdev->dev.parent); priv->idev = idev; - priv->touch = dev_get_platdata(&pdev->dev); - if (!priv->touch) { - dev_err(&pdev->dev, "missing platform data\n"); - ret = -ENODEV; - goto err_free_mem; + + if (pdata) { + priv->atox = pdata->atox; + priv->ato = pdata->ato; } idev->name = MC13783_TS_NAME;