lkml.org 
[lkml]   [2011]   [Oct]   [4]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [RFC PATCH] tty/serial: atmel_serial: add device tree support
On Mon, Oct 03, 2011 at 08:58:48PM -0500, Rob Herring wrote:
> On 10/03/2011 04:51 AM, Nicolas Ferre wrote:
> > static int __devinit atmel_serial_probe(struct platform_device *pdev)
> > {
> > struct atmel_uart_port *port;
> > + struct device_node *np = pdev->dev.of_node;
> > struct atmel_uart_data *pdata = pdev->dev.platform_data;
> > void *data;
> > int ret;
> >
> > BUILD_BUG_ON(ATMEL_SERIAL_RINGSIZE & (ATMEL_SERIAL_RINGSIZE - 1));
> >
> > - port = &atmel_ports[pdata->num];
> > + if (np) {
> > + ret = of_alias_get_id(np, "serial");
> > + if (ret < 0)
> > + goto err;
>
> I'll defer to Grant on this. There aren't any other drivers using this.
>

This is the correct thing to do.

One note however; I prefer driver to *not* require an alias to be
present. By all means, use an alias if it is available, but the
driver should auto-enumerate if it is not. There is a patch that
makes of_alias_get_id() do this for you, but it hasn't been mainlined
yet and it is still a bit in flux. There will be something that takes
care of this for you, but be aware that the function name may change.

In the mean time, this patch is okay.

Acked-by: Grant Likely <grant.likely@secretlab.ca>

g.


\
 
 \ /
  Last update: 2011-10-04 20:03    [W:0.053 / U:0.032 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site