public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH][RESEND] x86: add HPET-quirk for nVidia MCP61 LPC Bridge (10de:03e0)
@ 2010-03-19 15:20 Frank Schaefer
  2010-03-19 16:23 ` Clemens Ladisch
  0 siblings, 1 reply; 4+ messages in thread
From: Frank Schaefer @ 2010-03-19 15:20 UTC (permalink / raw)
  To: linux-kernel

Any comments on this patch ? (N)Ack ? Wrong list ?




x86: add HPET-quirk for nVidia MCP61 LPC Bridge (10de:03e0)

Tested with an ASUS M2N-VM DH (nForce 430 + GeForce 6150SE).

Cc: stable@kernel.org
Signed-off-by: Frank Schaefer <fschaefer.oss@googlemail.com>
---
 arch/x86/kernel/quirks.c |   20 +++++++++++---------
 1 files changed, 11 insertions(+), 9 deletions(-)

diff --git a/arch/x86/kernel/quirks.c b/arch/x86/kernel/quirks.c
index 12e9fea..7985ba5 100644
--- a/arch/x86/kernel/quirks.c
+++ b/arch/x86/kernel/quirks.c
@@ -450,23 +450,25 @@ DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_NVIDIA, 0x0051,
             nvidia_force_enable_hpet);
 
 /* LPC bridges */
-DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_NVIDIA, 0x0260,
+DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_NVIDIA, 0x0260,    /* MCP51 */
             nvidia_force_enable_hpet);
-DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_NVIDIA, 0x0360,
+DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_NVIDIA, 0x0360,    /* MCP55 */
             nvidia_force_enable_hpet);
-DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_NVIDIA, 0x0361,
+DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_NVIDIA, 0x0361,    /* MCP55 */
             nvidia_force_enable_hpet);
-DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_NVIDIA, 0x0362,
+DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_NVIDIA, 0x0362,    /* MCP55 */
             nvidia_force_enable_hpet);
-DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_NVIDIA, 0x0363,
+DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_NVIDIA, 0x0363,    /* MCP55 */
             nvidia_force_enable_hpet);
-DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_NVIDIA, 0x0364,
+DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_NVIDIA, 0x0364,    /* MCP55 */
             nvidia_force_enable_hpet);
-DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_NVIDIA, 0x0365,
+DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_NVIDIA, 0x0365,    /* MCP55 */
             nvidia_force_enable_hpet);
-DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_NVIDIA, 0x0366,
+DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_NVIDIA, 0x0366,    /* MCP55 */
             nvidia_force_enable_hpet);
-DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_NVIDIA, 0x0367,
+DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_NVIDIA, 0x0367,    /* MCP55 */
+            nvidia_force_enable_hpet);
+DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_NVIDIA, 0x03e0,    /* MCP61 */
             nvidia_force_enable_hpet);
 
 void force_hpet_resume(void)
-- 
1.6.0.2



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH][RESEND] x86: add HPET-quirk for nVidia MCP61 LPC Bridge (10de:03e0)
  2010-03-19 15:20 [PATCH][RESEND] x86: add HPET-quirk for nVidia MCP61 LPC Bridge (10de:03e0) Frank Schaefer
@ 2010-03-19 16:23 ` Clemens Ladisch
  2010-03-20 12:53   ` Frank Schaefer
  0 siblings, 1 reply; 4+ messages in thread
From: Clemens Ladisch @ 2010-03-19 16:23 UTC (permalink / raw)
  To: Frank Schaefer; +Cc: linux-kernel

Frank Schaefer wrote:
> Any comments on this patch ?

Gmail ate your tabs; see Documentation/email-clients.txt.

Cosmetic changes to not belong in the stable tree; see
Documentation/stable_kernel_rules.txt.

> Wrong list ?

arch/x86 stuff should go to <x86@kernel.org>.


Regards,
Clemens

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH][RESEND] x86: add HPET-quirk for nVidia MCP61 LPC Bridge (10de:03e0)
  2010-03-19 16:23 ` Clemens Ladisch
@ 2010-03-20 12:53   ` Frank Schaefer
  2010-03-22  8:32     ` Clemens Ladisch
  0 siblings, 1 reply; 4+ messages in thread
From: Frank Schaefer @ 2010-03-20 12:53 UTC (permalink / raw)
  To: linux-kernel

Clemens Ladisch schrieb:
> Frank Schaefer wrote:
>   
>> Any comments on this patch ?
>>     
> Gmail ate your tabs; see Documentation/email-clients.txt.
>   
Thanks for your reply Clemens.
It wasn't Gmails fault, I made a pasting mistake...sorry.
> Cosmetic changes to not belong in the stable tree; see
> Documentation/stable_kernel_rules.txt.
>   
Alright, no Cc stable.
>> Wrong list ?
>>     
>
> arch/x86 stuff should go to <x86@kernel.org>.
>
>
> Regards,
> Clemens
>   
The get-maintainer-script told me to send it to this list. Shouldn't it
be updated then ?
Also: this list seems to be mentioned nowhere, at least not at

http://www.linux.org/docs/lists.html
http://vger.kernel.org/vger-lists.html


Regards,
Frank

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH][RESEND] x86: add HPET-quirk for nVidia MCP61 LPC Bridge (10de:03e0)
  2010-03-20 12:53   ` Frank Schaefer
@ 2010-03-22  8:32     ` Clemens Ladisch
  0 siblings, 0 replies; 4+ messages in thread
From: Clemens Ladisch @ 2010-03-22  8:32 UTC (permalink / raw)
  To: Frank Schaefer; +Cc: linux-kernel

Frank Schaefer wrote:
> Clemens Ladisch schrieb:
> > arch/x86 stuff should go to <x86@kernel.org>.
> 
> The get-maintainer-script told me to send it to this list. Shouldn't it
> be updated then ?

There seems to be a bug when handling patches; try "get_maintainer.pl
-f arch/x86/kernel/quirks.c".

> Also: this list seems to be mentioned nowhere,

It's mentioned in the MAINTAINERS file.


Regards,
Clemens

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-03-22  8:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-19 15:20 [PATCH][RESEND] x86: add HPET-quirk for nVidia MCP61 LPC Bridge (10de:03e0) Frank Schaefer
2010-03-19 16:23 ` Clemens Ladisch
2010-03-20 12:53   ` Frank Schaefer
2010-03-22  8:32     ` Clemens Ladisch

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox