On Wed, 2008-09-24 at 18:35 +0900, Paul Mundt wrote:
Right, but I want to do it from within the kernel when I create the
device because that the only place I truly know what HW the uio maps to.
I found that this works:
struct uio_info *info,
struct uio_device *idev;
idev = info->uio_dev;
device_rename(idev->dev, "irq4");
but then I have to copy the private uio_device struct from uio.c
Is there a better way to get at idev->dev?
Jocke
--