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 tag 'staging-4.6-rc3' of git://git.kernel.org/pub/scm/linux/ker…
…nel/git/gregkh/staging Pull staging and IIO driver fixes from Greg KH: "Here are some IIO driver fixes, along with two staging driver fixes for 4.6-rc3. One staging driver patch reverts the deletion of a driver that happened in 4.6-rc1. We thought that laptop.org was dead, but it's still alive and kicking, and has users that were mad we broke their hardware by deleting a driver for their machines. So that driver is added back and everyone is happy again. All of these have been in linux-next for a while with no reported issues" * tag 'staging-4.6-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging: Revert "Staging: olpc_dcon: Remove obsolete driver" staging/rdma/hfi1: select CRC32 iio: gyro: bmg160: fix buffer read values iio: gyro: bmg160: fix endianness when reading axes iio: accel: bmc150: fix endianness when reading axes iio: st_magn: always define ST_MAGN_TRIGGER_SET_STATE iio: fix config watermark initial value iio: health: max30100: correct FIFO check condition iio: imu: Fix inv_mpu6050 dependencies iio: adc: Fix build error of missing devm_ioremap_resource on UM iio: light: apds9960: correct FIFO check condition iio: adc: max1363: correct reference voltage iio: adc: max1363: add missing adc to max1363_id
- Loading branch information
Showing
20 changed files
with
1,377 additions
and
15 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 |
---|---|---|
|
@@ -10595,6 +10595,14 @@ L: [email protected] | |
S: Maintained | ||
F: drivers/staging/nvec/ | ||
|
||
STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) | ||
M: Jens Frederich <[email protected]> | ||
M: Daniel Drake <[email protected]> | ||
M: Jon Nettleton <[email protected]> | ||
W: http://wiki.laptop.org/go/DCON | ||
S: Maintained | ||
F: drivers/staging/olpc_dcon/ | ||
|
||
STAGING - REALTEK RTL8712U DRIVERS | ||
M: Larry Finger <[email protected]> | ||
M: Florian Schilhabel <[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
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
config FB_OLPC_DCON | ||
tristate "One Laptop Per Child Display CONtroller support" | ||
depends on OLPC && FB | ||
depends on I2C | ||
depends on (GPIO_CS5535 || GPIO_CS5535=n) | ||
select BACKLIGHT_CLASS_DEVICE | ||
---help--- | ||
In order to support very low power operation, the XO laptop uses a | ||
secondary Display CONtroller, or DCON. This secondary controller | ||
is present in the video pipeline between the primary display | ||
controller (integrate into the processor or chipset) and the LCD | ||
panel. It allows the main processor/display controller to be | ||
completely powered off while still retaining an image on the display. | ||
This controller is only available on OLPC platforms. Unless you have | ||
one of these platforms, you will want to say 'N'. | ||
|
||
config FB_OLPC_DCON_1 | ||
bool "OLPC XO-1 DCON support" | ||
depends on FB_OLPC_DCON && GPIO_CS5535 | ||
default y | ||
---help--- | ||
Enable support for the DCON in XO-1 model laptops. The kernel | ||
communicates with the DCON using model-specific code. If you | ||
have an XO-1 (or if you're unsure what model you have), you should | ||
say 'Y'. | ||
|
||
config FB_OLPC_DCON_1_5 | ||
bool "OLPC XO-1.5 DCON support" | ||
depends on FB_OLPC_DCON && ACPI | ||
default y | ||
---help--- | ||
Enable support for the DCON in XO-1.5 model laptops. The kernel | ||
communicates with the DCON using model-specific code. If you | ||
have an XO-1.5 (or if you're unsure what model you have), you | ||
should say 'Y'. |
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,6 @@ | ||
olpc-dcon-objs += olpc_dcon.o | ||
olpc-dcon-$(CONFIG_FB_OLPC_DCON_1) += olpc_dcon_xo_1.o | ||
olpc-dcon-$(CONFIG_FB_OLPC_DCON_1_5) += olpc_dcon_xo_1_5.o | ||
obj-$(CONFIG_FB_OLPC_DCON) += olpc-dcon.o | ||
|
||
|
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,9 @@ | ||
TODO: | ||
- see if vx855 gpio API can be made similar enough to cs5535 so we can | ||
share more code | ||
- allow simultaneous XO-1 and XO-1.5 support | ||
|
||
Please send patches to Greg Kroah-Hartman <[email protected]> and | ||
copy: | ||
Daniel Drake <[email protected]> | ||
Jens Frederich <[email protected]> |
Oops, something went wrong.