On Sat, Nov 05, 2005 at 07:42:10AM -0800, Greg KH wrote:
> On Sat, Nov 05, 2005 at 10:56:28AM +0000, Russell King wrote:
> > Re-jig the simple platform device support to allow private data
> > to be attached to a platform device, as well as allowing the
> > parent device to be set.
> >
> > Example usage:
> >
> > pdev = platform_device_alloc("mydev", id);
> > if (pdev) {
> > err = platform_device_add_resources(pdev, &resources,
> > ARRAY_SIZE(resources));
> > if (err == 0)
> > err = platform_device_add_data(pdev, &platform_data,
> > sizeof(platform_data));
> > if (err == 0)
> > err = platform_device_add(pdev);
> > } else {
> > err = -ENOMEM;
> > }
> > if (err)
> > platform_device_put(pdev);
> >
> > Signed-off-by: Russell King <[email protected]>
>
> Acked-by: Greg Kroah-Hartman <[email protected]>
>
> These look great, want me to add them to my tree and get them to Linus
> before 2.6.15?
It might be worth discussing the platform_driver changes I have as well.
I need to fix those up for the current moving target (they break _very_
often) so I'll post them later tonight for comment.
--
Russell King
Linux kernel 2.6 ARM Linux - http://www.arm.linux.org.uk/
maintainer of: 2.6 Serial core
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[Index of Archives]
[Kernel Newbies]
[Netfilter]
[Bugtraq]
[Photo]
[Stuff]
[Gimp]
[Yosemite News]
[MIPS Linux]
[ARM Linux]
[Linux Security]
[Linux RAID]
[Video 4 Linux]
[Linux for the blind]
[Linux Resources]