forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'i2c-for-linus' of git://git.kernel.org/pub/scm/linux/ke…
…rnel/git/jdelvare/staging * 'i2c-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging: MAINTAINERS: List i2c-omap and i2c-davinci drivers MAINTAINERS: i2c: Add third maintainer i2c/gpio-i2cmux: Convert to use module_platform_driver() i2c/busses: Use module_platform_driver() i2c-dev: Use memdup_user i2c: Convert to DEFINE_PCI_DEVICE_TABLE i2c-ali1535: enable SPARC support i2c: Fix error value returned by several bus drivers
- Loading branch information
Showing
41 changed files
with
92 additions
and
304 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3193,6 +3193,7 @@ F: drivers/i2c/busses/i2c-stub.c | |
I2C SUBSYSTEM | ||
M: "Jean Delvare (PC drivers, core)" <[email protected]> | ||
M: "Ben Dooks (embedded platforms)" <[email protected]> | ||
M: "Wolfram Sang (embedded platforms)" <[email protected]> | ||
L: [email protected] | ||
W: http://i2c.wiki.kernel.org/ | ||
T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/ | ||
|
@@ -4683,6 +4684,8 @@ Q: http://patchwork.kernel.org/project/linux-omap/list/ | |
T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git | ||
S: Maintained | ||
F: arch/arm/*omap*/ | ||
F: drivers/i2c/busses/i2c-omap.c | ||
F: include/linux/i2c-omap.h | ||
|
||
OMAP CLOCK FRAMEWORK SUPPORT | ||
M: Paul Walmsley <[email protected]> | ||
|
@@ -5956,6 +5959,7 @@ L: [email protected] (subscribers-only) | |
Q: http://patchwork.kernel.org/project/linux-davinci/list/ | ||
S: Supported | ||
F: arch/arm/mach-davinci | ||
F: drivers/i2c/busses/i2c-davinci.c | ||
|
||
SIS 190 ETHERNET DRIVER | ||
M: Francois Romieu <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -724,18 +724,7 @@ static struct platform_driver cpm_i2c_driver = { | |
}, | ||
}; | ||
|
||
static int __init cpm_i2c_init(void) | ||
{ | ||
return platform_driver_register(&cpm_i2c_driver); | ||
} | ||
|
||
static void __exit cpm_i2c_exit(void) | ||
{ | ||
platform_driver_unregister(&cpm_i2c_driver); | ||
} | ||
|
||
module_init(cpm_i2c_init); | ||
module_exit(cpm_i2c_exit); | ||
module_platform_driver(cpm_i2c_driver); | ||
|
||
MODULE_AUTHOR("Jochen Friedrich <[email protected]>"); | ||
MODULE_DESCRIPTION("I2C-Bus adapter routines for CPM boards"); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -306,20 +306,9 @@ static struct platform_driver smbus_sch_driver = { | |
.remove = __devexit_p(smbus_sch_remove), | ||
}; | ||
|
||
static int __init i2c_sch_init(void) | ||
{ | ||
return platform_driver_register(&smbus_sch_driver); | ||
} | ||
|
||
static void __exit i2c_sch_exit(void) | ||
{ | ||
platform_driver_unregister(&smbus_sch_driver); | ||
} | ||
module_platform_driver(smbus_sch_driver); | ||
|
||
MODULE_AUTHOR("Jacob Pan <[email protected]>"); | ||
MODULE_DESCRIPTION("Intel SCH SMBus driver"); | ||
MODULE_LICENSE("GPL"); | ||
|
||
module_init(i2c_sch_init); | ||
module_exit(i2c_sch_exit); | ||
MODULE_ALIAS("platform:isch_smbus"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -148,18 +148,7 @@ static struct platform_driver ixp2000_i2c_driver = { | |
}, | ||
}; | ||
|
||
static int __init ixp2000_i2c_init(void) | ||
{ | ||
return platform_driver_register(&ixp2000_i2c_driver); | ||
} | ||
|
||
static void __exit ixp2000_i2c_exit(void) | ||
{ | ||
platform_driver_unregister(&ixp2000_i2c_driver); | ||
} | ||
|
||
module_init(ixp2000_i2c_init); | ||
module_exit(ixp2000_i2c_exit); | ||
module_platform_driver(ixp2000_i2c_driver); | ||
|
||
MODULE_AUTHOR ("Deepak Saxena <[email protected]>"); | ||
MODULE_DESCRIPTION("IXP2000 GPIO-based I2C bus driver"); | ||
|
Oops, something went wrong.