All of lore.kernel.org
 help / color / mirror / Atom feed
* [alsa-devel][PATCH] hda_intel: Add the Device IDs for MCP89 and remove IDs of MCP7B to/from hda_intel.c
@ 2009-02-27  9:03 peerchen
  2009-02-27  9:23   ` [alsa-devel][PATCH] " Takashi Iwai
  0 siblings, 1 reply; 3+ messages in thread
From: peerchen @ 2009-02-27  9:03 UTC (permalink / raw)
  To: alsa-devel, linux-kernel; +Cc: Takashi Iwai, akpm, pchen

Added the Device IDs for MCP89 HD audio controller.
Removed the IDs of MCP7B cause this chipset had been cancelled.

Signed-off-by: Peer Chen <peerchen@gmail.com>
---
--- linux-2.6.29-rc6/sound/pci/hda/hda_intel.c.orig	2009-02-26 08:51:02.000000000 -0500
+++ linux-2.6.29-rc6/sound/pci/hda/hda_intel.c	2009-02-26 08:51:23.000000000 -0500
@@ -2442,10 +2442,10 @@ static struct pci_device_id azx_ids[] = 
 	{ PCI_DEVICE(0x10de, 0x0ac1), .driver_data = AZX_DRIVER_NVIDIA },
 	{ PCI_DEVICE(0x10de, 0x0ac2), .driver_data = AZX_DRIVER_NVIDIA },
 	{ PCI_DEVICE(0x10de, 0x0ac3), .driver_data = AZX_DRIVER_NVIDIA },
-	{ PCI_DEVICE(0x10de, 0x0bd4), .driver_data = AZX_DRIVER_NVIDIA },
-	{ PCI_DEVICE(0x10de, 0x0bd5), .driver_data = AZX_DRIVER_NVIDIA },
-	{ PCI_DEVICE(0x10de, 0x0bd6), .driver_data = AZX_DRIVER_NVIDIA },
-	{ PCI_DEVICE(0x10de, 0x0bd7), .driver_data = AZX_DRIVER_NVIDIA },
+	{ PCI_DEVICE(0x10de, 0x0d94), .driver_data = AZX_DRIVER_NVIDIA },
+	{ PCI_DEVICE(0x10de, 0x0d95), .driver_data = AZX_DRIVER_NVIDIA },
+	{ PCI_DEVICE(0x10de, 0x0d96), .driver_data = AZX_DRIVER_NVIDIA },
+	{ PCI_DEVICE(0x10de, 0x0d97), .driver_data = AZX_DRIVER_NVIDIA },
 	/* Teradici */
 	{ PCI_DEVICE(0x6549, 0x1200), .driver_data = AZX_DRIVER_TERA },
 	/* AMD Generic, PCI class code and Vendor ID for HD Audio */
-

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

* Re: [PATCH] hda_intel: Add the Device IDs for MCP89 and remove IDs of MCP7B to/from hda_intel.c
  2009-02-27  9:03 [alsa-devel][PATCH] hda_intel: Add the Device IDs for MCP89 and remove IDs of MCP7B to/from hda_intel.c peerchen
@ 2009-02-27  9:23   ` Takashi Iwai
  0 siblings, 0 replies; 3+ messages in thread
From: Takashi Iwai @ 2009-02-27  9:23 UTC (permalink / raw)
  To: peerchen; +Cc: pchen, alsa-devel, linux-kernel, akpm

At Fri, 27 Feb 2009 17:03:19 +0800,
peerchen wrote:
> 
> Added the Device IDs for MCP89 HD audio controller.
> Removed the IDs of MCP7B cause this chipset had been cancelled.
> 
> Signed-off-by: Peer Chen <peerchen@gmail.com>

Applied now.  Thanks!


Takashi

> ---
> --- linux-2.6.29-rc6/sound/pci/hda/hda_intel.c.orig	2009-02-26 08:51:02.000000000 -0500
> +++ linux-2.6.29-rc6/sound/pci/hda/hda_intel.c	2009-02-26 08:51:23.000000000 -0500
> @@ -2442,10 +2442,10 @@ static struct pci_device_id azx_ids[] = 
>  	{ PCI_DEVICE(0x10de, 0x0ac1), .driver_data = AZX_DRIVER_NVIDIA },
>  	{ PCI_DEVICE(0x10de, 0x0ac2), .driver_data = AZX_DRIVER_NVIDIA },
>  	{ PCI_DEVICE(0x10de, 0x0ac3), .driver_data = AZX_DRIVER_NVIDIA },
> -	{ PCI_DEVICE(0x10de, 0x0bd4), .driver_data = AZX_DRIVER_NVIDIA },
> -	{ PCI_DEVICE(0x10de, 0x0bd5), .driver_data = AZX_DRIVER_NVIDIA },
> -	{ PCI_DEVICE(0x10de, 0x0bd6), .driver_data = AZX_DRIVER_NVIDIA },
> -	{ PCI_DEVICE(0x10de, 0x0bd7), .driver_data = AZX_DRIVER_NVIDIA },
> +	{ PCI_DEVICE(0x10de, 0x0d94), .driver_data = AZX_DRIVER_NVIDIA },
> +	{ PCI_DEVICE(0x10de, 0x0d95), .driver_data = AZX_DRIVER_NVIDIA },
> +	{ PCI_DEVICE(0x10de, 0x0d96), .driver_data = AZX_DRIVER_NVIDIA },
> +	{ PCI_DEVICE(0x10de, 0x0d97), .driver_data = AZX_DRIVER_NVIDIA },
>  	/* Teradici */
>  	{ PCI_DEVICE(0x6549, 0x1200), .driver_data = AZX_DRIVER_TERA },
>  	/* AMD Generic, PCI class code and Vendor ID for HD Audio */
> -
> 

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

* Re: [alsa-devel][PATCH] hda_intel: Add the Device IDs for MCP89 and remove IDs of MCP7B to/from hda_intel.c
@ 2009-02-27  9:23   ` Takashi Iwai
  0 siblings, 0 replies; 3+ messages in thread
From: Takashi Iwai @ 2009-02-27  9:23 UTC (permalink / raw)
  To: peerchen; +Cc: alsa-devel, linux-kernel, akpm, pchen

At Fri, 27 Feb 2009 17:03:19 +0800,
peerchen wrote:
> 
> Added the Device IDs for MCP89 HD audio controller.
> Removed the IDs of MCP7B cause this chipset had been cancelled.
> 
> Signed-off-by: Peer Chen <peerchen@gmail.com>

Applied now.  Thanks!


Takashi

> ---
> --- linux-2.6.29-rc6/sound/pci/hda/hda_intel.c.orig	2009-02-26 08:51:02.000000000 -0500
> +++ linux-2.6.29-rc6/sound/pci/hda/hda_intel.c	2009-02-26 08:51:23.000000000 -0500
> @@ -2442,10 +2442,10 @@ static struct pci_device_id azx_ids[] = 
>  	{ PCI_DEVICE(0x10de, 0x0ac1), .driver_data = AZX_DRIVER_NVIDIA },
>  	{ PCI_DEVICE(0x10de, 0x0ac2), .driver_data = AZX_DRIVER_NVIDIA },
>  	{ PCI_DEVICE(0x10de, 0x0ac3), .driver_data = AZX_DRIVER_NVIDIA },
> -	{ PCI_DEVICE(0x10de, 0x0bd4), .driver_data = AZX_DRIVER_NVIDIA },
> -	{ PCI_DEVICE(0x10de, 0x0bd5), .driver_data = AZX_DRIVER_NVIDIA },
> -	{ PCI_DEVICE(0x10de, 0x0bd6), .driver_data = AZX_DRIVER_NVIDIA },
> -	{ PCI_DEVICE(0x10de, 0x0bd7), .driver_data = AZX_DRIVER_NVIDIA },
> +	{ PCI_DEVICE(0x10de, 0x0d94), .driver_data = AZX_DRIVER_NVIDIA },
> +	{ PCI_DEVICE(0x10de, 0x0d95), .driver_data = AZX_DRIVER_NVIDIA },
> +	{ PCI_DEVICE(0x10de, 0x0d96), .driver_data = AZX_DRIVER_NVIDIA },
> +	{ PCI_DEVICE(0x10de, 0x0d97), .driver_data = AZX_DRIVER_NVIDIA },
>  	/* Teradici */
>  	{ PCI_DEVICE(0x6549, 0x1200), .driver_data = AZX_DRIVER_TERA },
>  	/* AMD Generic, PCI class code and Vendor ID for HD Audio */
> -
> 

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

end of thread, other threads:[~2009-02-27  9:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-27  9:03 [alsa-devel][PATCH] hda_intel: Add the Device IDs for MCP89 and remove IDs of MCP7B to/from hda_intel.c peerchen
2009-02-27  9:23 ` [PATCH] " Takashi Iwai
2009-02-27  9:23   ` [alsa-devel][PATCH] " Takashi Iwai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.