diff options
| author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2012-11-08 11:51:52 -0500 |
|---|---|---|
| committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2012-11-08 11:51:52 -0500 |
| commit | fa8e2458ecfc959cd627e25ba86d8eddcb63c887 (patch) | |
| tree | d8c9dec3dac8e97e8591e6507a619959449d6344 /drivers | |
| parent | d56a289be2ce01d1aa426a6cf45dede14a8db41e (diff) | |
| parent | 3d70f8c617a436c7146ecb81df2265b4626dfe89 (diff) | |
Merge tag 'v3.7-rc4' into next to sync up Wacom bits
Linux 3.7-rc4
Diffstat (limited to 'drivers')
103 files changed, 1038 insertions, 610 deletions
diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c index f94d4c818fc7..0230cb6cbb3a 100644 --- a/drivers/acpi/video.c +++ b/drivers/acpi/video.c | |||
| @@ -1345,12 +1345,15 @@ static int | |||
| 1345 | acpi_video_bus_get_devices(struct acpi_video_bus *video, | 1345 | acpi_video_bus_get_devices(struct acpi_video_bus *video, |
| 1346 | struct acpi_device *device) | 1346 | struct acpi_device *device) |
| 1347 | { | 1347 | { |
| 1348 | int status; | 1348 | int status = 0; |
| 1349 | struct acpi_device *dev; | 1349 | struct acpi_device *dev; |
| 1350 | 1350 | ||
| 1351 | status = acpi_video_device_enumerate(video); | 1351 | /* |
| 1352 | if (status) | 1352 | * There are systems where video module known to work fine regardless |
| 1353 | return status; | 1353 | * of broken _DOD and ignoring returned value here doesn't cause |
| 1354 | * any issues later. | ||
| 1355 | */ | ||
| 1356 | acpi_video_device_enumerate(video); | ||
| 1354 | 1357 | ||
| 1355 | list_for_each_entry(dev, &device->children, node) { | 1358 | list_for_each_entry(dev, &device->children, node) { |
| 1356 | 1359 | ||
diff --git a/drivers/block/Kconfig b/drivers/block/Kconfig index f529407db93f..824e09c4d0d7 100644 --- a/drivers/block/Kconfig +++ b/drivers/block/Kconfig | |||
| @@ -131,6 +131,7 @@ config BLK_CPQ_DA | |||
| 131 | config BLK_CPQ_CISS_DA | 131 | config BLK_CPQ_CISS_DA |
| 132 | tristate "Compaq Smart Array 5xxx support" | 132 | tristate "Compaq Smart Array 5xxx support" |
| 133 | depends on PCI | 133 | depends on PCI |
| 134 | select CHECK_SIGNATURE | ||
| 134 | help | 135 | help |
| 135 | This is the driver for Compaq Smart Array 5xxx controllers. | 136 | This is the driver for Compaq Smart Array 5xxx controllers. |
| 136 | Everyone using these boards should say Y here. | 137 | Everyone using these boards should say Y here. |
| @@ -166,8 +167,8 @@ config BLK_DEV_DAC960 | |||
| 166 | module will be called DAC960. | 167 | module will be called DAC960. |
| 167 | 168 | ||
| 168 | config BLK_DEV_UMEM | 169 | config BLK_DEV_UMEM |
| 169 | tristate "Micro Memory MM5415 Battery Backed RAM support (EXPERIMENTAL)" | 170 | tristate "Micro Memory MM5415 Battery Backed RAM support" |
| 170 | depends on PCI && EXPERIMENTAL | ||
