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://jdelvare.pck.nerim.net/jdelvare…
…-2.6 * 'i2c-for-linus' of git://jdelvare.pck.nerim.net/jdelvare-2.6: i2c/m41t00: Do not forget to write year i2c-mv64xxx: Fix random oops at boot i2c: Migration aids for i2c_adapter.dev removal i2c-pnx: Add entry to MAINTAINERS i2c-pnx: Fix interrupt handler, get rid of EARLY config option
- Loading branch information
Showing
7 changed files
with
51 additions
and
21 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 |
---|---|---|
|
@@ -226,6 +226,23 @@ Who: Jean Delvare <[email protected]> | |
|
||
--------------------------- | ||
|
||
What: i2c_adapter.dev | ||
i2c_adapter.list | ||
When: July 2007 | ||
Why: Superfluous, given i2c_adapter.class_dev: | ||
* The "dev" was a stand-in for the physical device node that legacy | ||
drivers would not have; but now it's almost always present. Any | ||
remaining legacy drivers must upgrade (they now trigger warnings). | ||
* The "list" duplicates class device children. | ||
The delay in removing this is so upgraded lm_sensors and libsensors | ||
can get deployed. (Removal causes minor changes in the sysfs layout, | ||
notably the location of the adapter type name and parenting the i2c | ||
client hardware directly from their controller.) | ||
Who: Jean Delvare <[email protected]>, | ||
David Brownell <[email protected]> | ||
|
||
--------------------------- | ||
|
||
What: IPv4 only connection tracking/NAT/helpers | ||
When: 2.6.22 | ||
Why: The new layer 3 independant connection tracking replaces the old | ||
|
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 |
---|---|---|
|
@@ -2579,6 +2579,12 @@ P: Adam Belay | |
M: [email protected] | ||
S: Maintained | ||
|
||
PNXxxxx I2C DRIVER | ||
P: Vitaly Wool | ||
M: [email protected] | ||
L: [email protected] | ||
S: Maintained | ||
|
||
PPP PROTOCOL DRIVERS AND COMPRESSORS | ||
P: Paul Mackerras | ||
M: [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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -305,8 +305,7 @@ static int i2c_pnx_master_rcv(struct i2c_adapter *adap) | |
return 0; | ||
} | ||
|
||
static irqreturn_t | ||
i2c_pnx_interrupt(int irq, void *dev_id, struct pt_regs *regs) | ||
static irqreturn_t i2c_pnx_interrupt(int irq, void *dev_id) | ||
{ | ||
u32 stat, ctl; | ||
struct i2c_adapter *adap = dev_id; | ||
|
@@ -699,10 +698,6 @@ MODULE_AUTHOR("Vitaly Wool, Dennis Kovalev <[email protected]>"); | |
MODULE_DESCRIPTION("I2C driver for Philips IP3204-based I2C busses"); | ||
MODULE_LICENSE("GPL"); | ||
|
||
#ifdef CONFIG_I2C_PNX_EARLY | ||
/* We need to make sure I2C is initialized before USB */ | ||
subsys_initcall(i2c_adap_pnx_init); | ||
#else | ||
mudule_init(i2c_adap_pnx_init); | ||
#endif | ||
module_exit(i2c_adap_pnx_exit); |
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