~ubuntu-branches/ubuntu/quantal/linux-lowlatency/quantal-proposed

« back to all changes in this revision

Viewing changes to drivers/power/max8903_charger.c

  • Committer: Package Import Robot
  • Author(s): Andy Whitcroft, Andy Whitcroft
  • Date: 2012-06-21 09:16:38 UTC
  • Revision ID: package-import@ubuntu.com-20120621091638-gubhv4nox8xez1ct
Tags: 3.5.0-1.1
[ Andy Whitcroft]

* Rebuild lowlatency against Ubuntu-3.5.0-1.1
* All new configuration system to allow configuration deltas to be
  exposed via debian.lowlatency/config-delta

Show diffs side-by-side

added added

removed removed

Lines of Context:
374
374
        },
375
375
};
376
376
 
377
 
static int __init max8903_init(void)
378
 
{
379
 
        return platform_driver_register(&max8903_driver);
380
 
}
381
 
module_init(max8903_init);
382
 
 
383
 
static void __exit max8903_exit(void)
384
 
{
385
 
        platform_driver_unregister(&max8903_driver);
386
 
}
387
 
module_exit(max8903_exit);
 
377
module_platform_driver(max8903_driver);
388
378
 
389
379
MODULE_LICENSE("GPL");
390
380
MODULE_DESCRIPTION("MAX8903 Charger Driver");
391
381
MODULE_AUTHOR("MyungJoo Ham <myungjoo.ham@samsung.com>");
392
 
MODULE_ALIAS("max8903-charger");
 
382
MODULE_ALIAS("platform:max8903-charger");