Merge master.kernel.org:/home/rmk/linux-2.6-drvmodel
authorLinus Torvalds <torvalds@g5.osdl.org>
Fri, 11 Nov 2005 17:24:26 +0000 (09:24 -0800)
committerLinus Torvalds <torvalds@g5.osdl.org>
Fri, 11 Nov 2005 17:24:26 +0000 (09:24 -0800)
12 files changed:
1  2 
arch/arm/mach-pxa/corgi_ssp.c
arch/um/drivers/net_kern.c
arch/xtensa/platform-iss/network.c
drivers/hwmon/hdaps.c
drivers/misc/hdpuftrs/hdpu_cpustate.c
drivers/misc/hdpuftrs/hdpu_nexus.c
drivers/mmc/wbsd.c
drivers/net/dm9000.c
drivers/net/gianfar.c
drivers/usb/gadget/dummy_hcd.c
drivers/usb/gadget/pxa2xx_udc.c
drivers/video/backlight/corgi_bl.c

Simple merge
Simple merge
Simple merge
@@@ -303,14 -301,27 +303,15 @@@ static int hdaps_resume(struct platform
        return hdaps_device_init();
  }
  
- static struct device_driver hdaps_driver = {
-       .name = "hdaps",
-       .bus = &platform_bus_type,
-       .owner = THIS_MODULE,
+ static struct platform_driver hdaps_driver = {
        .probe = hdaps_probe,
-       .resume = hdaps_resume
+       .resume = hdaps_resume,
+       .driver = {
+               .name = "hdaps",
+               .owner = THIS_MODULE,
+       },
  };
  
 -/* Input class stuff */
 -
 -static struct input_dev hdaps_idev = {
 -      .name = "hdaps",
 -      .evbit = { BIT(EV_ABS) },
 -      .absbit = { BIT(ABS_X) | BIT(ABS_Y) },
 -      .absmin  = { [ABS_X] = -256, [ABS_Y] = -256 },
 -      .absmax  = { [ABS_X] = 256, [ABS_Y] = 256 },
 -      .absfuzz = { [ABS_X] = HDAPS_INPUT_FUZZ, [ABS_Y] = HDAPS_INPUT_FUZZ },
 -      .absflat = { [ABS_X] = HDAPS_INPUT_FUZZ, [ABS_Y] = HDAPS_INPUT_FUZZ },
 -};
 -
  /*
   * hdaps_calibrate - Set our "resting" values.  Callers must hold hdaps_sem.
   */
@@@ -599,10 -595,10 +600,10 @@@ out
  static void __exit hdaps_exit(void)
  {
        del_timer_sync(&hdaps_timer);
 -      input_unregister_device(&hdaps_idev);
 +      input_unregister_device(hdaps_idev);
        sysfs_remove_group(&pdev->dev.kobj, &hdaps_attribute_group);
        platform_device_unregister(pdev);
-       driver_unregister(&hdaps_driver);
+       platform_driver_unregister(&hdaps_driver);
        release_region(HDAPS_LOW_PORT, HDAPS_NR_PORTS);
  
        printk(KERN_INFO "hdaps: driver unloaded.\n");
Simple merge
Simple merge
@@@ -2038,11 -2038,9 +2038,9 @@@ static int wbsd_resume(struct platform_
  
  static struct platform_device *wbsd_device;
  
- static struct device_driver wbsd_driver = {
-       .name           = DRIVER_NAME,
-       .bus            = &platform_bus_type,
+ static struct platform_driver wbsd_driver = {
        .probe          = wbsd_probe,
 -      .remove         = wbsd_remove,
 +      .remove         = __devexit_p(wbsd_remove),
  
        .suspend        = wbsd_suspend,
        .resume         = wbsd_resume,
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge