[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <201204171340.06788.arnd@arndb.de>
Date: Tue, 17 Apr 2012 13:40:06 +0000
From: Arnd Bergmann <arnd@...db.de>
To: Roland Stigge <stigge@...com.de>
Cc: gregkh@...uxfoundation.org, linux-usb@...r.kernel.org,
linux-kernel@...r.kernel.org, kevin.wells@....com,
srinivas.bakki@....com, stern@...land.harvard.edu,
linux-arm-kernel@...ts.infradead.org
Subject: Re: [PATCH v3 1/3] USB: Add driver for NXP ISP1301 USB transceiver
On Tuesday 17 April 2012, Roland Stigge wrote:
> +static int match(struct device *dev, void *data)
> +{
> + struct device_node *node = (struct device_node *)data;
> + return dev->of_node == node ? 1 : 0;
> +}
One small correction: you should probably check if the device
is actually bound to isp1301_driver:
return (dev->of_node == node) && (dev->driver == &isp1301_driver.driver);
Otherwise, the changes from last version look all good.
Arnd
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists