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 commit 'v2.6.38-rc4' into imx-for-2.6.39
Conflicts: arch/arm/mach-mxs/clock-mx28.c Signed-off-by: Sascha Hauer <[email protected]>
- Loading branch information
Showing
1,682 changed files
with
20,619 additions
and
11,663 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 |
---|---|---|
|
@@ -23,6 +23,7 @@ Andy Adamson <[email protected]> | |
Arnaud Patard <[email protected]> | ||
Arnd Bergmann <[email protected]> | ||
Axel Dyks <[email protected]> | ||
Axel Lin <[email protected]> | ||
Ben Gardner <[email protected]> | ||
Ben M Cahill <[email protected]> | ||
Björn Steinbrink <[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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
What: /sys/devices/platform/at91_can/net/<iface>/mb0_id | ||
Date: January 2011 | ||
KernelVersion: 2.6.38 | ||
Contact: Marc Kleine-Budde <[email protected]> | ||
Description: | ||
Value representing the can_id of mailbox 0. | ||
|
||
Default: 0x7ff (standard frame) | ||
|
||
Due to a chip bug (errata 50.2.6.3 & 50.3.5.3 in | ||
"AT91SAM9263 Preliminary 6249H-ATARM-27-Jul-09") the | ||
contents of mailbox 0 may be send under certain | ||
conditions (even if disabled or in rx mode). | ||
|
||
The workaround in the errata suggests not to use the | ||
mailbox and load it with an unused identifier. | ||
|
||
In order to use an extended can_id add the | ||
CAN_EFF_FLAG (0x80000000U) to the can_id. Example: | ||
|
||
- standard id 0x7ff: | ||
echo 0x7ff > /sys/class/net/can0/mb0_id | ||
|
||
- extended id 0x1fffffff: | ||
echo 0x9fffffff > /sys/class/net/can0/mb0_id |
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 |
---|---|---|
|
@@ -357,14 +357,6 @@ Who: Dave Jones <[email protected]>, Matthew Garrett <[email protected]> | |
|
||
----------------------------- | ||
|
||
What: __do_IRQ all in one fits nothing interrupt handler | ||
When: 2.6.32 | ||
Why: __do_IRQ was kept for easy migration to the type flow handlers. | ||
More than two years of migration time is enough. | ||
Who: Thomas Gleixner <[email protected]> | ||
|
||
----------------------------- | ||
|
||
What: fakephp and associated sysfs files in /sys/bus/pci/slots/ | ||
When: 2011 | ||
Why: In 2.6.27, the semantics of /sys/bus/pci/slots was redefined to | ||
|
@@ -611,3 +603,19 @@ Why: The adm9240, w83792d and w83793 hardware monitoring drivers have | |
Who: Jean Delvare <[email protected]> | ||
|
||
---------------------------- | ||
|
||
What: noswapaccount kernel command line parameter | ||
When: 2.6.40 | ||
Why: The original implementation of memsw feature enabled by | ||
CONFIG_CGROUP_MEM_RES_CTLR_SWAP could be disabled by the noswapaccount | ||
kernel parameter (introduced in 2.6.29-rc1). Later on, this decision | ||
turned out to be not ideal because we cannot have the feature compiled | ||
in and disabled by default and let only interested to enable it | ||
(e.g. general distribution kernels might need it). Therefore we have | ||
added swapaccount[=0|1] parameter (introduced in 2.6.37) which provides | ||
the both possibilities. If we remove noswapaccount we will have | ||
less command line parameters with the same functionality and we | ||
can also cleanup the parameter handling a bit (). | ||
Who: Michal Hocko <[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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,10 @@ Supported chips: | |
Prefix 'lm93' | ||
Addresses scanned: I2C 0x2c-0x2e | ||
Datasheet: http://www.national.com/ds.cgi/LM/LM93.pdf | ||
* National Semiconductor LM94 | ||
Prefix 'lm94' | ||
Addresses scanned: I2C 0x2c-0x2e | ||
Datasheet: http://www.national.com/ds.cgi/LM/LM94.pdf | ||
|
||
Authors: | ||
Mark M. Hoffman <[email protected]> | ||
|
@@ -56,6 +60,9 @@ previous motherboard management ASICs and uses some of the LM85's features | |
for dynamic Vccp monitoring and PROCHOT. It is designed to monitor a dual | ||
processor Xeon class motherboard with a minimum of external components. | ||
|
||
LM94 is also supported in LM93 compatible mode. Extra sensors and features of | ||
LM94 are not supported. | ||
|
||
|
||
User Interface | ||
-------------- | ||
|
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
Oops, something went wrong.