Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6ce7641b879e4b9ead46e14275d9d3645b47fa63
Commit:     6ce7641b879e4b9ead46e14275d9d3645b47fa63
Parent:     2ffbb8377c7a0713baf6644e285adc27a5654582
Author:     Gary Hade <[EMAIL PROTECTED]>
AuthorDate: Tue Nov 20 12:19:12 2007 -0800
Committer:  Len Brown <[EMAIL PROTECTED]>
CommitDate: Tue Nov 20 19:06:04 2007 -0500

    ACPI: acpiphp: Remove dmesg spam on device remove
    
    In cases where acpi_pci_bind() does not
    attach device data, acpi_pci_unbind()
    complains via an ACPI exception about the missing data when
    the device is removed.  For example, acpi_pci_bind() does not
    attach data for non-existent device functions so when the device
    is removed using the ACPI PCI hotplug driver 'acpiphp' an ACPI
    exception is logged for every non-existent function.  This patch
    avoids the confusing log messages by removing the unnecessary
    ACPI exception.
    
    Signed-off-by: Gary Hade <[EMAIL PROTECTED]>
    Signed-off-by: Len Brown <[EMAIL PROTECTED]>
---
 drivers/acpi/pci_bind.c |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/drivers/acpi/pci_bind.c b/drivers/acpi/pci_bind.c
index 0289693..388300d 100644
--- a/drivers/acpi/pci_bind.c
+++ b/drivers/acpi/pci_bind.c
@@ -294,9 +294,6 @@ int acpi_pci_unbind(struct acpi_device *device)
            acpi_get_data(device->handle, acpi_pci_data_handler,
                          (void **)&data);
        if (ACPI_FAILURE(status)) {
-               ACPI_EXCEPTION((AE_INFO, status,
-                               "Unable to get data from device %s",
-                               acpi_device_bid(device)));
                result = -ENODEV;
                goto end;
        }
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to