An error occurred fetching the project authors.
  1. 11 Jan, 2005 1 commit
  2. 06 Jan, 2005 1 commit
  3. 17 Dec, 2004 1 commit
  4. 24 Sep, 2004 1 commit
  5. 14 Jul, 2004 1 commit
  6. 08 Jul, 2004 1 commit
  7. 03 Jul, 2004 1 commit
  8. 18 Jun, 2004 1 commit
    • Russell King's avatar
      [PATCH] Couple of sysfs patches · c4a9c821
      Russell King authored
      On Wed, Jun 16, 2004 at 05:51:03PM -0500, Dmitry Torokhov wrote:
      > What about freeing the resources? Can it be put in platform_device_unregister
      > or is it release handler task? I'd put it in unregister because when I call
      > unregister I expect device be half-dead and release as much resources as it
      > can.
      
      
      Here's the updated patch - to be applied on top of the
      platform_get_resource() patch sent previously.
      Signed-off-by: default avatarGreg Kroah-Hartman <greg@kroah.com>
      c4a9c821
  9. 10 Jun, 2004 2 commits
  10. 08 Jun, 2004 1 commit
  11. 02 May, 2004 1 commit
    • Kenn Humborg's avatar
      [PATCH] Re: Platform device matching · 38cf5e92
      Kenn Humborg authored
      On Mon, Apr 26, 2004 at 12:27:33AM +0100, Russell King wrote:
      > So, this comment needs updating:
      >
      >  *      So, extract the <name> from the device, and compare it against
      >  *      the name of the driver. Return whether they match or not.
      
      Want a patch?
      38cf5e92
  12. 12 Apr, 2004 1 commit
  13. 29 Dec, 2003 1 commit
    • Andrew Morton's avatar
      [PATCH] Rename legacy_bus to platform_bus · 8299fdeb
      Andrew Morton authored
      From: Jeff Garzik <jgarzik@pobox.com>
      
      I've seen this patch floating around.  Not sure the origin, but it's 
      surfaced on lkml and also when I was poking around handhelds.org CVS for
      iPAQ patches:  on non-PCs, particularly system-on-chip devices but not
      just there, you have a custom "platform bus" that is the root of pretty 
      much all other devices and buses.
      
      It's something I wanted to make sure people didn't forget; to make sure 
      the legacy_bus didn't get "legacied out of existence."  ;-)
      8299fdeb
  14. 15 Sep, 2003 1 commit
  15. 14 Aug, 2003 1 commit
  16. 03 Jun, 2003 1 commit
  17. 14 Mar, 2003 1 commit
  18. 13 Mar, 2003 1 commit
  19. 05 Mar, 2003 1 commit
  20. 04 Mar, 2003 1 commit
  21. 18 Oct, 2002 1 commit
    • Alexander Viro's avatar
      [PATCH] compile fixes · 850c11cf
      Alexander Viro authored
      DaveM spotted bogus cast sprintf in checks.c.  Fixed.  Several places
      that unregistered device called put_device() instead.
      850c11cf
  22. 16 Oct, 2002 1 commit
  23. 23 Sep, 2002 1 commit
    • Patrick Mochel's avatar
      driver model: add better platform device support. · f6bec0e6
      Patrick Mochel authored
      Platform devices are devices commonly found on the motherboard of systems. This
      includes legacy devices (serial ports, floppy controllers, parallel ports, etc)
      and host bridges to peripheral buses. 
      
      We already had a platform bus type, which gives a way to group platform devices
      and drivers, and allow each to be bound to each other dynamically. Though before,
      it didn't do anything. It still doesn't do much, but we now have:
      
      - struct platform_device, which generically describes platform deviecs. This only
        includes a name and id in addition to a struct device, but more may be added later.
      
      - implelemnt platform_device_register() and platform_device_unregister() to handle
        adding and removing these devices. 
      
      - Create legacy_bus - a default parent device for legacy devices. 
      
      - Change the floppy driver to define a platform_device (instead of a sys_device). 
        In driverfs, this gives us now:
      
      a# tree -d /sys/bus/platform/
      /sys/bus/platform/
      |-- devices
      |   `-- floppy0 -> ../../../root/legacy/floppy0
      `-- drivers
      
      and
      
      # tree -d /sys/root/legacy/
      /sys/root/legacy/
      `-- floppy0
      f6bec0e6
  24. 26 Aug, 2002 1 commit
    • Patrick Mochel's avatar
      Add struct bus_type platform_bus and document its intentions. · 538588a7
      Patrick Mochel authored
      The platform bus is a pseudo-bus meant to group legacy devices. Not only 
      does it give legacy devices a common parent and bus type, it provides the
      necessary infrastructure to allow for firmware-based enumeration of the
      system's devices (using the platform's add() callback).
      538588a7