2006-02-19 16:44:05

by Tomek Koprowski

[permalink] [raw]
Subject: Re: [patch] SMBus unhide on HP Compaq nx6110

Hi,
I attach a trivial patch for 2.6.15.4 that unhides SMBus controller
on an HP Compaq nx6110 notebook.

Regards,
Tomasz Koprowski

Signed-off-by: Tomasz Koprowski <[email protected]>

--- linux-2.6.15.4.orig/drivers/pci/quirks.c ? ?2006-02-19 10:02:08.000000000 +0100
+++ linux-2.6.15.4/drivers/pci/quirks.c 2006-02-19 10:35:04.000000000 +0100
@@ -934,6 +934,12 @@
? ? ? ? ? ? ? ? ? ? ? ? case 0x12bd: /* HP D530 */
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? asus_hides_smbus = 1;
? ? ? ? ? ? ? ? ? ? ? ? }
+ ? ? ? ? ? ? ? if (dev->device == PCI_DEVICE_ID_INTEL_82915GM_HB) {
+ ? ? ? ? ? ? ? ? ? ? ? switch (dev->subsystem_device) {
+ ? ? ? ? ? ? ? ? ? ? ? case 0x099c: /* HP Compaq nx6110 */
+ ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? asus_hides_smbus = 1;
+ ? ? ? ? ? ? ? ? ? ? ? }
+ ? ? ? ? ? ? ? }
? ? ? ? } else if (unlikely(dev->subsystem_vendor == PCI_VENDOR_ID_TOSHIBA)) {
? ? ? ? ? ? ? ? if (dev->device == PCI_DEVICE_ID_INTEL_82855GM_HB)
? ? ? ? ? ? ? ? ? ? ? ? switch(dev->subsystem_device) {

--
[ [email protected] http://www.koprowski.org ]
[ JabberID: [email protected] ? gg#: 2348134 ]
[ ? ? ? Life is as bad as you make it be ? ? ? ]


2006-02-19 16:53:30

by Greg KH

[permalink] [raw]
Subject: Re: [patch] SMBus unhide on HP Compaq nx6110

On Sun, Feb 19, 2006 at 05:45:36PM +0100, Tomek Koprowski wrote:
> Hi,
> I attach a trivial patch for 2.6.15.4 that unhides SMBus controller
> on an HP Compaq nx6110 notebook.
>
> Regards,
> Tomasz Koprowski
>
> Signed-off-by: Tomasz Koprowski <[email protected]>
>
> --- linux-2.6.15.4.orig/drivers/pci/quirks.c ? ?2006-02-19 10:02:08.000000000 +0100
> +++ linux-2.6.15.4/drivers/pci/quirks.c 2006-02-19 10:35:04.000000000 +0100
> @@ -934,6 +934,12 @@
> ? ? ? ? ? ? ? ? ? ? ? ? case 0x12bd: /* HP D530 */

Hm, your email client seems to have messed up the tabs here.

Care to retry?

thanks,

greg k-h