Re: [RESEND][PATCH] uio: Add of_platform_driver to uio_pdrv_genirq
From: Paul Mundt <hidden>
Date: 2008-12-16 12:27:39
Also in:
lkml
From: Paul Mundt <hidden>
Date: 2008-12-16 12:27:39
Also in:
lkml
On Thu, Dec 11, 2008 at 04:05:37PM +0100, Wolfram Sang wrote:
Make the generic uio-driver also accessible for of devices. It utilizes the
standard 'reg' and 'interrupt' properties. A typical usage would look like
this:
fpga-io@00003000 {
compatible = "generic-uio";
reg = <0x00003000 0x20>;
interrupts = <0xa>;
interrupt-parent = <&fpga_irq_mux>;
};
To achieve this, the probe function has been refactored, so it can be used by
platform and of code. Then, the of driver has been added.
Signed-off-by: Wolfram Sang <redacted>It is pretty poor form to not even bother to Cc the only author of the code you are modifying, and have no Signed-off-by or Acked-by to even suggest that it was ever even looked at. This isn't something that ought to have to be pointed out, either. In addition to the stuff pointed out by Greg, I don't see what you actually gain by hacking the OF crap in to this driver. You would be better off layering the OF driver on top of this, rather than trying to make them live together in the same file. See pata_platform/pata_of_platform for an example of how to do this a bit more sanely.