mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 1/4] pata-it821x: use UDMA_OFF for Vortex86SX for clearness
@ 2010-09-27  2:35 Otavio Salvador
  2010-09-27  2:35 ` [PATCH 2/4] USB: cdc-acm: fix code indentation Otavio Salvador
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Otavio Salvador @ 2010-09-27  2:35 UTC (permalink / raw)
  To: linux-kernel; +Cc: Otavio Salvador, Jeff Garzik

Cc: Jeff Garzik <jgarzik@redhat.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
 drivers/ata/pata_it821x.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/ata/pata_it821x.c b/drivers/ata/pata_it821x.c
index bf88f71..412cdd2 100644
--- a/drivers/ata/pata_it821x.c
+++ b/drivers/ata/pata_it821x.c
@@ -899,7 +899,7 @@ static int it821x_init_one(struct pci_dev *pdev, const struct pci_device_id *id)
 		.flags = ATA_FLAG_SLAVE_POSS,
 		.pio_mask = ATA_PIO4,
 		.mwdma_mask = ATA_MWDMA2,
-		/* No UDMA */
+		.udma_mask = UDMA_OFF,
 		.port_ops = &it821x_rdc_port_ops
 	};
 
-- 
1.7.2.3.313.gcd15


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

* [PATCH 2/4] USB: cdc-acm: fix code indentation
  2010-09-27  2:35 [PATCH 1/4] pata-it821x: use UDMA_OFF for Vortex86SX for clearness Otavio Salvador
@ 2010-09-27  2:35 ` Otavio Salvador
  2010-09-27  2:35 ` [PATCH 3/4] ALSA: hda: add Vortex86MX PCI ids Otavio Salvador
  2010-09-27  2:35 ` [PATCH 4/4] net: r6040: store BIOS default MAC in perm_add Otavio Salvador
  2 siblings, 0 replies; 7+ messages in thread
From: Otavio Salvador @ 2010-09-27  2:35 UTC (permalink / raw)
  To: linux-kernel; +Cc: Otavio Salvador, Greg Kroah-Hartman

Cc: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
 drivers/usb/class/cdc-acm.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/usb/class/cdc-acm.c b/drivers/usb/class/cdc-acm.c
index bc62fae..d6ede98 100644
--- a/drivers/usb/class/cdc-acm.c
+++ b/drivers/usb/class/cdc-acm.c
@@ -1614,7 +1614,7 @@ static const struct usb_device_id acm_ids[] = {
 	/* Support Lego NXT using pbLua firmware */
 	{ USB_DEVICE(0x0694, 0xff00),
 	.driver_info = NOT_A_MODEM,
-       	},
+	},
 
 	/* control interfaces without any protocol set */
 	{ USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ACM,
-- 
1.7.2.3.313.gcd15


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

* [PATCH 3/4] ALSA: hda: add Vortex86MX PCI ids
  2010-09-27  2:35 [PATCH 1/4] pata-it821x: use UDMA_OFF for Vortex86SX for clearness Otavio Salvador
  2010-09-27  2:35 ` [PATCH 2/4] USB: cdc-acm: fix code indentation Otavio Salvador
@ 2010-09-27  2:35 ` Otavio Salvador
  2010-09-27  6:15   ` Takashi Iwai
  2010-09-27  2:35 ` [PATCH 4/4] net: r6040: store BIOS default MAC in perm_add Otavio Salvador
  2 siblings, 1 reply; 7+ messages in thread
From: Otavio Salvador @ 2010-09-27  2:35 UTC (permalink / raw)
  To: linux-kernel; +Cc: Otavio Salvador, Takashi Iwai

Cc: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
 sound/pci/hda/hda_intel.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c
index 34940a0..e986209 100644
--- a/sound/pci/hda/hda_intel.c
+++ b/sound/pci/hda/hda_intel.c
@@ -2799,6 +2799,8 @@ static DEFINE_PCI_DEVICE_TABLE(azx_ids) = {
 	/* this entry seems still valid -- i.e. without emu20kx chip */
 	{ PCI_DEVICE(0x1102, 0x0009), .driver_data = AZX_DRIVER_GENERIC },
 #endif
+	/* Vortex86MX */
+	{ PCI_DEVICE(0x17f3, 0x3010), .driver_data = AZX_DRIVER_GENERIC },
 	/* AMD/ATI Generic, PCI class code and Vendor ID for HD Audio */
 	{ PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_ANY_ID),
 	  .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
-- 
1.7.2.3.313.gcd15


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

* [PATCH 4/4] net: r6040: store BIOS default MAC in perm_add
  2010-09-27  2:35 [PATCH 1/4] pata-it821x: use UDMA_OFF for Vortex86SX for clearness Otavio Salvador
  2010-09-27  2:35 ` [PATCH 2/4] USB: cdc-acm: fix code indentation Otavio Salvador
  2010-09-27  2:35 ` [PATCH 3/4] ALSA: hda: add Vortex86MX PCI ids Otavio Salvador
@ 2010-09-27  2:35 ` Otavio Salvador
  2010-09-27  2:39   ` David Miller
  2 siblings, 1 reply; 7+ messages in thread
From: Otavio Salvador @ 2010-09-27  2:35 UTC (permalink / raw)
  To: linux-kernel; +Cc: Otavio Salvador, David S. Miller

Cc: David S. Miller <davem@davemloft.net>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
 drivers/net/r6040.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/drivers/net/r6040.c b/drivers/net/r6040.c
index 142c381..5780d08 100644
--- a/drivers/net/r6040.c
+++ b/drivers/net/r6040.c
@@ -740,6 +740,9 @@ static void r6040_mac_address(struct net_device *dev)
 	iowrite16(adrp[0], ioaddr + MID_0L);
 	iowrite16(adrp[1], ioaddr + MID_0M);
 	iowrite16(adrp[2], ioaddr + MID_0H);
+
+	/* Store MAC Address in perm_addr */
+	memcpy(dev->perm_addr, dev->dev_addr, ETH_ALEN);
 }
 
 static int r6040_open(struct net_device *dev)
-- 
1.7.2.3.313.gcd15


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

* Re: [PATCH 4/4] net: r6040: store BIOS default MAC in perm_add
  2010-09-27  2:35 ` [PATCH 4/4] net: r6040: store BIOS default MAC in perm_add Otavio Salvador
@ 2010-09-27  2:39   ` David Miller
  2010-09-27  2:50     ` Otavio Salvador
  0 siblings, 1 reply; 7+ messages in thread
From: David Miller @ 2010-09-27  2:39 UTC (permalink / raw)
  To: otavio; +Cc: linux-kernel


Please submit networking patches to netdev@vger.kernel.org

Thank you.

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

* Re: [PATCH 4/4] net: r6040: store BIOS default MAC in perm_add
  2010-09-27  2:39   ` David Miller
@ 2010-09-27  2:50     ` Otavio Salvador
  0 siblings, 0 replies; 7+ messages in thread
From: Otavio Salvador @ 2010-09-27  2:50 UTC (permalink / raw)
  To: David Miller; +Cc: linux-kernel

Hello David,

On Sun, Sep 26, 2010 at 11:39 PM, David Miller <davem@davemloft.net> wrote:
>
> Please submit networking patches to netdev@vger.kernel.org

Okey! I have just did it.

Thanks in advance,

-- 
Otavio Salvador                  O.S. Systems
E-mail: otavio@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854         http://projetos.ossystems.com.br

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

* Re: [PATCH 3/4] ALSA: hda: add Vortex86MX PCI ids
  2010-09-27  2:35 ` [PATCH 3/4] ALSA: hda: add Vortex86MX PCI ids Otavio Salvador
@ 2010-09-27  6:15   ` Takashi Iwai
  0 siblings, 0 replies; 7+ messages in thread
From: Takashi Iwai @ 2010-09-27  6:15 UTC (permalink / raw)
  To: Otavio Salvador; +Cc: linux-kernel

At Sun, 26 Sep 2010 23:35:06 -0300,
Otavio Salvador wrote:
> 
> Cc: Takashi Iwai <tiwai@suse.de>
> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>

Applied now.  Thanks.


Takashi

> ---
>  sound/pci/hda/hda_intel.c |    2 ++
>  1 files changed, 2 insertions(+), 0 deletions(-)
> 
> diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c
> index 34940a0..e986209 100644
> --- a/sound/pci/hda/hda_intel.c
> +++ b/sound/pci/hda/hda_intel.c
> @@ -2799,6 +2799,8 @@ static DEFINE_PCI_DEVICE_TABLE(azx_ids) = {
>  	/* this entry seems still valid -- i.e. without emu20kx chip */
>  	{ PCI_DEVICE(0x1102, 0x0009), .driver_data = AZX_DRIVER_GENERIC },
>  #endif
> +	/* Vortex86MX */
> +	{ PCI_DEVICE(0x17f3, 0x3010), .driver_data = AZX_DRIVER_GENERIC },
>  	/* AMD/ATI Generic, PCI class code and Vendor ID for HD Audio */
>  	{ PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_ANY_ID),
>  	  .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
> -- 
> 1.7.2.3.313.gcd15
> 

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

end of thread, other threads:[~2010-09-27  6:15 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-09-27  2:35 [PATCH 1/4] pata-it821x: use UDMA_OFF for Vortex86SX for clearness Otavio Salvador
2010-09-27  2:35 ` [PATCH 2/4] USB: cdc-acm: fix code indentation Otavio Salvador
2010-09-27  2:35 ` [PATCH 3/4] ALSA: hda: add Vortex86MX PCI ids Otavio Salvador
2010-09-27  6:15   ` Takashi Iwai
2010-09-27  2:35 ` [PATCH 4/4] net: r6040: store BIOS default MAC in perm_add Otavio Salvador
2010-09-27  2:39   ` David Miller
2010-09-27  2:50     ` Otavio Salvador

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

all inboxes | Powered by JetHome®