Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6

* 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6:
ACPI: no AC status notification
ACPI Exception (video-1721): UNKNOWN_STATUS_CODE, Cant attach device

+5 -6
+3 -5
drivers/acpi/ac.c
··· 233 233 234 234 device = ac->device; 235 235 switch (event) { 236 + default: 237 + ACPI_DEBUG_PRINT((ACPI_DB_INFO, 238 + "Unsupported event [0x%x]\n", event)); 236 239 case ACPI_AC_NOTIFY_STATUS: 237 240 case ACPI_NOTIFY_BUS_CHECK: 238 241 case ACPI_NOTIFY_DEVICE_CHECK: ··· 247 244 #ifdef CONFIG_ACPI_SYSFS_POWER 248 245 kobject_uevent(&ac->charger.dev->kobj, KOBJ_CHANGE); 249 246 #endif 250 - break; 251 - default: 252 - ACPI_DEBUG_PRINT((ACPI_DB_INFO, 253 - "Unsupported event [0x%x]\n", event)); 254 - break; 255 247 } 256 248 257 249 return;
+2 -1
drivers/acpi/video.c
··· 1713 1713 1714 1714 status = acpi_video_bus_get_one_device(dev, video); 1715 1715 if (ACPI_FAILURE(status)) { 1716 - ACPI_EXCEPTION((AE_INFO, status, "Cant attach device")); 1716 + ACPI_DEBUG_PRINT((ACPI_DB_WARN, 1717 + "Cant attach device")); 1717 1718 continue; 1718 1719 } 1719 1720 }