From: Joe Perches <joe@perches.com>
To: linux-kernel@vger.kernel.org
Cc: Daniele Venzano <venza@brownhat.org>,
James Chapman <jchapman@katalix.com>,
Jeff Garzik <jgarzik@pobox.com>,
Ramkrishna Vepa <ram.vepa@neterion.com>,
Rastapur Santosh <santosh.rastapur@neterion.com>,
Roger Luethi <rl@hellgate.ch>,
Ron Mercer <linux-driver@qlogic.com>,
Sivakumar Subramani <sivakumar.subramani@neterion.com>,
Sreenivasa Honnur <sreenivasa.honnur@neterion.com>,
netdev@vger.kernel.org
Subject: [PATCH 36/59] drivers/net: Add missing "space"
Date: Mon, 19 Nov 2007 17:48:28 -0800 [thread overview]
Message-ID: <1195523331-15303-37-git-send-email-joe@perches.com> (raw)
Message-ID: <fef2c4f213c930a3c1c1e58c8961249886621caa.1195454435.git.joe@perches.com> (raw)
In-Reply-To: <1195523331-15303-36-git-send-email-joe@perches.com>
In-Reply-To: <ee1678e1bc8b80b7ae420059fffc7241486ea91a.1195454434.git.joe@perches.com>
Signed-off-by: Joe Perches <joe@perches.com>
---
drivers/net/3c507.c | 4 ++--
drivers/net/amd8111e.c | 4 ++--
drivers/net/at1700.c | 2 +-
drivers/net/pppol2tp.c | 2 +-
drivers/net/qla3xxx.c | 2 +-
drivers/net/rrunner.c | 2 +-
drivers/net/s2io.c | 6 +++---
drivers/net/sis900.c | 6 +++---
drivers/net/smc9194.c | 2 +-
drivers/net/via-rhine.c | 2 +-
10 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/drivers/net/3c507.c b/drivers/net/3c507.c
index 964d31a..f90ede9 100644
--- a/drivers/net/3c507.c
+++ b/drivers/net/3c507.c
@@ -747,7 +747,7 @@ static void init_82586_mem(struct net_device *dev)
int boguscnt = 50;
while (readw(shmem+iSCB_STATUS) == 0)
if (--boguscnt == 0) {
- printk("%s: i82586 initialization timed out with status %04x,"
+ printk("%s: i82586 initialization timed out with status %04x, "
"cmd %04x.\n", dev->name,
readw(shmem+iSCB_STATUS), readw(shmem+iSCB_CMD));
break;
@@ -832,7 +832,7 @@ static void el16_rx(struct net_device *dev)
if (rfd_cmd != 0 || data_buffer_addr != rx_head + 22
|| (pkt_len & 0xC000) != 0xC000) {
- printk("%s: Rx frame at %#x corrupted, status %04x cmd %04x"
+ printk("%s: Rx frame at %#x corrupted, status %04x cmd %04x "
"next %04x data-buf @%04x %04x.\n", dev->name, rx_head,
frame_status, rfd_cmd, next_rx_frame, data_buffer_addr,
pkt_len);
diff --git a/drivers/net/amd8111e.c b/drivers/net/amd8111e.c
index eebf5bb..3430cc3 100644
--- a/drivers/net/amd8111e.c
+++ b/drivers/net/amd8111e.c
@@ -1939,13 +1939,13 @@ static int __devinit amd8111e_probe_one(struct pci_dev *pdev,
err = pci_enable_device(pdev);
if(err){
- printk(KERN_ERR "amd8111e: Cannot enable new PCI device,"
+ printk(KERN_ERR "amd8111e: Cannot enable new PCI device, "
"exiting.\n");
return err;
}
if(!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)){
- printk(KERN_ERR "amd8111e: Cannot find PCI base address"
+ printk(KERN_ERR "amd8111e: Cannot find PCI base address, "
"exiting.\n");
err = -ENODEV;
goto err_disable_pdev;
diff --git a/drivers/net/at1700.c b/drivers/net/at1700.c
index b032c1b..9704171 100644
--- a/drivers/net/at1700.c
+++ b/drivers/net/at1700.c
@@ -465,7 +465,7 @@ found:
/* Snarf the interrupt vector now. */
ret = request_irq(irq, &net_interrupt, 0, DRV_NAME, dev);
if (ret) {
- printk (" AT1700 at %#3x is unusable due to a conflict on"
+ printk (" AT1700 at %#3x is unusable due to a conflict on "
"IRQ %d.\n", ioaddr, irq);
goto err_mca;
}
diff --git a/drivers/net/pppol2tp.c b/drivers/net/pppol2tp.c
index a7556cd..1b51bb6 100644
--- a/drivers/net/pppol2tp.c
+++ b/drivers/net/pppol2tp.c
@@ -2489,7 +2489,7 @@ static void __exit pppol2tp_exit(void)
module_init(pppol2tp_init);
module_exit(pppol2tp_exit);
-MODULE_AUTHOR("Martijn van Oosterhout <kleptog@svana.org>,"
+MODULE_AUTHOR("Martijn van Oosterhout <kleptog@svana.org>, "
"James Chapman <jchapman@katalix.com>");
MODULE_DESCRIPTION("PPP over L2TP over UDP");
MODULE_LICENSE("GPL");
diff --git a/drivers/net/qla3xxx.c b/drivers/net/qla3xxx.c
index a579111..4f5d3d4 100644
--- a/drivers/net/qla3xxx.c
+++ b/drivers/net/qla3xxx.c
@@ -711,7 +711,7 @@ static int ql_mii_write_reg_ex(struct ql3_adapter *qdev,
if (ql_wait_for_mii_ready(qdev)) {
if (netif_msg_link(qdev))
printk(KERN_WARNING PFX
- "%s: Timed out waiting for management port to"
+ "%s: Timed out waiting for management port to "
"get free before issuing command.\n",
qdev->ndev->name);
return -1;
diff --git a/drivers/net/rrunner.c b/drivers/net/rrunner.c
index 73a7e65..379ded5 100644
--- a/drivers/net/rrunner.c
+++ b/drivers/net/rrunner.c
@@ -878,7 +878,7 @@ static u32 rr_handle_event(struct net_device *dev, u32 prodidx, u32 eidx)
dev->name);
goto drop;
case E_FLG_SYN_ERR:
- printk(KERN_WARNING "%s: Flag sync. lost during"
+ printk(KERN_WARNING "%s: Flag sync. lost during "
"packet\n", dev->name);
goto drop;
case E_RX_INV_BUF:
diff --git a/drivers/net/s2io.c b/drivers/net/s2io.c
index 6326667..8aff21c 100644
--- a/drivers/net/s2io.c
+++ b/drivers/net/s2io.c
@@ -3762,7 +3762,7 @@ static int __devinit s2io_test_msi(struct s2io_nic *sp)
if (!sp->msi_detected) {
/* MSI(X) test failed, go back to INTx mode */
- DBG_PRINT(ERR_DBG, "%s: PCI %s: No interrupt was generated"
+ DBG_PRINT(ERR_DBG, "%s: PCI %s: No interrupt was generated "
"using MSI(X) during test\n", sp->dev->name,
pci_name(pdev));
@@ -6705,7 +6705,7 @@ static int s2io_add_isr(struct s2io_nic * sp)
/* If either data or addr is zero print it */
if(!(sp->msix_info[i].addr &&
sp->msix_info[i].data)) {
- DBG_PRINT(ERR_DBG, "%s @ Addr:0x%llx"
+ DBG_PRINT(ERR_DBG, "%s @ Addr:0x%llx "
"Data:0x%lx\n",sp->desc[i],
(unsigned long long)
sp->msix_info[i].addr,
@@ -6723,7 +6723,7 @@ static int s2io_add_isr(struct s2io_nic * sp)
/* If either data or addr is zero print it */
if(!(sp->msix_info[i].addr &&
sp->msix_info[i].data)) {
- DBG_PRINT(ERR_DBG, "%s @ Addr:0x%llx"
+ DBG_PRINT(ERR_DBG, "%s @ Addr:0x%llx "
"Data:0x%lx\n",sp->desc[i],
(unsigned long long)
sp->msix_info[i].addr,
diff --git a/drivers/net/sis900.c b/drivers/net/sis900.c
index 0857d2c..ec95e49 100644
--- a/drivers/net/sis900.c
+++ b/drivers/net/sis900.c
@@ -419,7 +419,7 @@ static int __devinit sis900_probe(struct pci_dev *pci_dev,
i = pci_set_dma_mask(pci_dev, DMA_32BIT_MASK);
if(i){
- printk(KERN_ERR "sis900.c: architecture does not support"
+ printk(KERN_ERR "sis900.c: architecture does not support "
"32bit PCI busmaster DMA\n");
return i;
}
@@ -1667,7 +1667,7 @@ static irqreturn_t sis900_interrupt(int irq, void *dev_instance)
/* something strange happened !!! */
if (status & HIBERR) {
if(netif_msg_intr(sis_priv))
- printk(KERN_INFO "%s: Abnormal interrupt,"
+ printk(KERN_INFO "%s: Abnormal interrupt, "
"status %#8.8x.\n", net_dev->name, status);
break;
}
@@ -1820,7 +1820,7 @@ refill_rx_ring:
* how the hardware will react to this kind
* of degenerated buffer */
if (netif_msg_rx_err(sis_priv))
- printk(KERN_INFO "%s: Memory squeeze,"
+ printk(KERN_INFO "%s: Memory squeeze, "
"deferring packet.\n",
net_dev->name);
net_dev->stats.rx_dropped++;
diff --git a/drivers/net/smc9194.c b/drivers/net/smc9194.c
index cb2698d..de67744 100644
--- a/drivers/net/smc9194.c
+++ b/drivers/net/smc9194.c
@@ -906,7 +906,7 @@ static int __init smc_probe(struct net_device *dev, int ioaddr)
SMC_SELECT_BANK(1);
base_address_register = inw( ioaddr + BASE );
if ( ioaddr != ( base_address_register >> 3 & 0x3E0 ) ) {
- printk(CARDNAME ": IOADDR %x doesn't match configuration (%x)."
+ printk(CARDNAME ": IOADDR %x doesn't match configuration (%x). "
"Probably not a SMC chip\n",
ioaddr, base_address_register >> 3 & 0x3E0 );
/* well, the base address register didn't match. Must not have
diff --git a/drivers/net/via-rhine.c b/drivers/net/via-rhine.c
index 07263cd..87c180b 100644
--- a/drivers/net/via-rhine.c
+++ b/drivers/net/via-rhine.c
@@ -1338,7 +1338,7 @@ static irqreturn_t rhine_interrupt(int irq, void *dev_instance)
if (debug > 2 &&
ioread8(ioaddr+ChipCmd) & CmdTxOn)
printk(KERN_WARNING "%s: "
- "rhine_interrupt() Tx engine"
+ "rhine_interrupt() Tx engine "
"still on.\n", dev->name);
}
rhine_tx(dev);
--
1.5.3.5.652.gf192c
next prev parent reply other threads:[~2007-11-20 2:05 UTC|newest]
Thread overview: 103+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <ee1678e1bc8b80b7ae420059fffc7241486ea91a.1195454434.git.joe@perches.com>
2007-11-20 1:47 ` [PATCH 00/59] trivial - Add missing "space" in multiline quoted strings Joe Perches
2007-11-20 1:47 ` [PATCH 01/59] arch/ia64: Add missing "space" Joe Perches
[not found] ` <23f0badf8dab73294c2aa142fafb9301ca843e88.1195454434.git.joe@perches.com>
2007-11-20 1:47 ` [PATCH 02/59] arch/mips: " Joe Perches
2007-11-21 22:34 ` Ralf Baechle
[not found] ` <0c0c76b8a44447bbeb8b0b502f5b4f2750bd8cc6.1195454434.git.joe@perches.com>
2007-11-20 1:47 ` [PATCH 03/59] arch/powerpc: " Joe Perches
[not found] ` <351afce2b8242a88389176a36d5bf75935385fdd.1195454434.git.joe@perches.com>
2007-11-20 1:47 ` [PATCH 04/59] arch/ppc: " Joe Perches
[not found] ` <afdfa525934b9dada1a5b7b459486d923dc0e780.1195454434.git.joe@perches.com>
2007-11-20 1:47 ` [PATCH 06/59] arch/sparc: " Joe Perches
2007-11-20 7:45 ` David Miller
2007-11-20 7:48 ` Joe Perches
2007-11-20 8:05 ` David Miller
[not found] ` <2cb1c8daa0f34a5506b88cf5b350660896c8a45b.1195454434.git.joe@perches.com>
2007-11-20 1:47 ` [PATCH 07/59] arch/sparc64: " Joe Perches
2007-11-20 7:43 ` David Miller
[not found] ` <fbeb04f6d7134565611741ad0148e1b401362ef9.1195454434.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 08/59] arch/um: " Joe Perches
2007-11-20 17:05 ` [uml-devel] " Jeff Dike
[not found] ` <c2f1bd6f19828452d5916728ebaa8d5f1bd0b152.1195454434.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 09/59] arch/x86: " Joe Perches
2007-11-20 2:05 ` Dave Jones
[not found] ` <07a846daef42aa7262f9e08a8be5c3ed8684ed77.1195454434.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 10/59] drivers/acpi: " Joe Perches
2007-11-20 2:53 ` Len Brown
[not found] ` <06ac5c8ff3114d38896fe59a453dd1b77b11cdec.1195454434.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 11/59] drivers/block: " Joe Perches
[not found] ` <51d5cae73b21c33174340db0e389ac810bba63fa.1195454434.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 12/59] drivers/cdrom: " Joe Perches
[not found] ` <552e08f56ca307c471834197a8e880045b4f024e.1195454434.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 13/59] drivers/char: " Joe Perches
[not found] ` <e2a957ca2937d67956712a66e7388dcd2f95cf90.1195454435.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 15/59] drivers/hwmon: " Joe Perches
2007-11-21 18:37 ` [lm-sensors] " Jean Delvare
2007-12-06 13:21 ` Mark M. Hoffman
[not found] ` <239a2d17c4e7f18b0aa0f34e1856f4d72a38e0d8.1195454435.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 16/59] drivers/i2c: " Joe Perches
2007-11-20 19:51 ` Jean Delvare
[not found] ` <3c52bdbf8c60392df6b4fc91e6188f4a382b5310.1195454435.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 17/59] drivers/ide: " Joe Perches
2007-11-22 21:23 ` Bartlomiej Zolnierkiewicz
[not found] ` <00c276347dd7ef0da4abbb8e7f2c0aa776e685c2.1195454435.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 18/59] drivers/ieee1394: " Joe Perches
2007-11-22 19:23 ` Stefan Richter
[not found] ` <de3db785bf1d8f7f5ae308ca366794cc3e5def83.1195454435.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 19/59] drivers/infiniband: " Joe Perches
2007-11-20 21:14 ` Roland Dreier
[not found] ` <f56e301a22202f30e5443b129f4ea15fa20c5226.1195454435.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 20/59] drivers/input: " Joe Perches
[not found] ` <d82909a235a0ca88319aaf7990fc94f7ebb649bb.1195454435.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 21/59] drivers/isdn: " Joe Perches
[not found] ` <e898ed30e34f209e9309667be632d75945672cd5.1195454435.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 22/59] drivers/macintosh: " Joe Perches
[not found] ` <5ce69261b8ce239633c31431c61538234b0f8065.1195454435.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 23/59] drivers/media/dvb: " Joe Perches
[not found] ` <150c45e2fd3ccb01decbe9aff70d13fb45b347b7.1195454435.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 24/59] drivers/media/radio: " Joe Perches
[not found] ` <48f19e3c182fdbd1ccd30b544209f962d16d7dc9.1195454435.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 26/59] drivers/message: " Joe Perches
[not found] ` <0b52e7ee42f854a4f4f6873a7a7bc496a7247d3c.1195454435.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 27/59] drivers/misc: " Joe Perches
[not found] ` <3ad6205457781910c10dd7261e606de0bf7bafac.1195454435.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 28/59] drivers/mtd: " Joe Perches
[not found] ` <6a2d5da40bdf6d7a6595ac2482dd88b7182a74b1.1195454435.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 29/59] drivers/net/chelsio: " Joe Perches
2007-11-24 1:57 ` Jeff Garzik
[not found] ` <1020259349705ef83d6011e837dce32c1f08299c.1195454435.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 30/59] drivers/net/cxgb3: " Joe Perches
[not found] ` <3723ae7bfde66a86c6bf3b044dfbd63b144623d9.1195454435.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 31/59] drivers/net/ixgb: " Joe Perches
2007-11-26 23:16 ` Kok, Auke
[not found] ` <3ed0b0aee275e6a8632b1be454a61f3a2b73639c.1195454435.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 32/59] drivers/net/netxen: " Joe Perches
[not found] ` <938a74cb7895afece561b299f11d28785214bade.1195454435.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 33/59] drivers/net/sk98lin: " Joe Perches
[not found] ` <8c0ecd8ae2baa9b0596d352f53c4c3527f3528bd.1195454435.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 34/59] drivers/net/wan: " Joe Perches
2007-11-20 23:52 ` Krzysztof Halasa
[not found] ` <5908c0bbfc91b572502351586cdf98fe9ca9aeec.1195454435.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 35/59] drivers/net/wireless: " Joe Perches
2007-11-20 16:41 ` Dan Williams
[not found] ` <fef2c4f213c930a3c1c1e58c8961249886621caa.1195454435.git.joe@perches.com>
2007-11-20 1:48 ` Joe Perches [this message]
[not found] ` <b56ad31ff9f8151583eaf50f5adb924b2e0ccb88.1195454435.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 37/59] drivers/pci: " Joe Perches
[not found] ` <d04f5b45e26dfc3ae3e8f69f01e3a20738f14b32.1195454435.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 38/59] drivers/rtc: " Joe Perches
[not found] ` <d9fb5d88f80db783c403b0d7c8e13c1e82c9ad32.1195454435.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 39/59] drivers/s390: " Joe Perches
2007-11-20 8:52 ` Heiko Carstens
[not found] ` <f9ffd78f5eb1f49e89fc578611de786ae7b9ac87.1195454436.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 40/59] drivers/scsi/aic7xxx: " Joe Perches
[not found] ` <6cd7c30e31d1e1a732eeb7f08636afa5061d5f44.1195454436.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 41/59] drivers/scsi/aic94xx: " Joe Perches
[not found] ` <0d5c0d474aaeba86c0899848a6eb16ef92d308bc.1195454436.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 42/59] drivers/scsi/lpfc: " Joe Perches
[not found] ` <769fa1b17e5b66a91e59e7c5899b6747b39b5731.1195454436.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 43/59] drivers/scsi/qla4xxx: " Joe Perches
2007-11-20 1:53 ` Joe Perches
[not found] ` <adb8f5a3245d3e618c861f99db3acd43362c92c7.1195454436.git.joe@perches.com>
2007-11-20 1:53 ` [PATCH 44/59] drivers/scsi: " Joe Perches
2007-11-20 10:39 ` Alistair John Strachan
2007-11-20 15:17 ` Joe Perches
[not found] ` <03356091a4d026aa495102d7da9509feffa4b2d8.1195454436.git.joe@perches.com>
2007-11-20 1:53 ` [PATCH 45/59] drivers/serial: " Joe Perches
[not found] ` <e65bfe9bbcf02e9c9c6204e6b52b79e13dfaa446.1195454436.git.joe@perches.com>
2007-11-20 1:53 ` [PATCH 46/59] drivers/usb: " Joe Perches
2007-11-20 2:19 ` David Brownell
[not found] ` <82a29b02f6151dd2d9a34d071e24f0726b8466d0.1195454436.git.joe@perches.com>
2007-11-20 1:53 ` [PATCH 47/59] fs/ocfs2: " Joe Perches
2007-11-20 2:13 ` Mark Fasheh
[not found] ` <9668a3b988be3ea263473a390e297005695807ba.1195454436.git.joe@perches.com>
2007-11-20 1:53 ` [PATCH 48/59] fs/proc: " Joe Perches
[not found] ` <ffd427b1785990d5c177b795ce4f9a9fc4d614ec.1195454436.git.joe@perches.com>
2007-11-20 1:53 ` [PATCH 49/59] fs/ufs: " Joe Perches
2007-11-22 4:02 ` Evgeniy Dushistov
[not found] ` <9a9f50d85954bdc384d07e363cc586161a37f93b.1195454436.git.joe@perches.com>
2007-11-20 1:53 ` [PATCH 50/59] net/bridge: " Joe Perches
2007-11-20 7:48 ` David Miller
[not found] ` <29542305a25cef11c0f5f7e978d9bf50ef60b4b3.1195454436.git.joe@perches.com>
2007-11-20 1:53 ` [PATCH 51/59] net/dccp: " Joe Perches
2007-11-20 7:48 ` David Miller
[not found] ` <e6a341b03ca9134b944d3021738a795c4e9085c7.1195454436.git.joe@perches.com>
2007-11-20 1:53 ` [PATCH 53/59] net/ipv6: " Joe Perches
2007-11-20 7:48 ` David Miller
[not found] ` <40f9ed858135b417a27a0a628667cc0da0d91e73.1195454436.git.joe@perches.com>
2007-11-20 1:53 ` [PATCH 54/59] net/irda: " Joe Perches
2007-11-20 7:49 ` David Miller
[not found] ` <c7b79830e5796ae4499e169a357b575320fb0fe0.1195454436.git.joe@perches.com>
2007-11-20 1:53 ` [PATCH 55/59] net/sctp: " Joe Perches
2007-11-20 7:49 ` David Miller
[not found] ` <4a6aeee33cf9dc9a3e329e73b6bc584b7650ed51.1195454436.git.joe@perches.com>
2007-11-20 1:53 ` [PATCH 56/59] net/sunrpc: " Joe Perches
2007-11-20 7:49 ` David Miller
[not found] ` <33ce09d8744eb1941b300c2a9986ae29d0660e02.1195454436.git.joe@perches.com>
2007-11-20 1:53 ` [PATCH 57/59] security/selinux: " Joe Perches
2007-11-20 3:10 ` James Morris
[not found] ` <5dcd734c020cccb2215a61da5eb4728e2d7ef8db.1195454436.git.joe@perches.com>
2007-11-20 1:53 ` [PATCH 58/59] sound/isa: " Joe Perches
2007-11-26 7:25 ` Takashi Iwai
[not found] ` <e138039432625a469859ede2281982263db71cac.1195454436.git.joe@perches.com>
2007-11-20 1:53 ` [PATCH 59/59] sound/oss: " Joe Perches
[not found] ` <f6014cdba9a3d017d1dcd0623a5da61777c919bb.1195454435.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 14/59] drivers/cpufreq: " Joe Perches
2007-11-20 2:06 ` Dave Jones
[not found] ` <8cdb362d494c702f6f0cf095e8e24435550bf5ce.1195454435.git.joe@perches.com>
2007-11-20 1:48 ` [PATCH 25/59] drivers/media/video: " Joe Perches
2007-11-20 2:24 ` [v4l-dvb-maintainer] " Brandon Philips
2007-11-20 4:08 ` Joe Perches
2007-11-20 12:06 ` Mauro Carvalho Chehab
2007-11-20 6:54 ` [PATCH 01/59] arch/ia64: " Simon Horman
2007-11-20 7:09 ` Joe Perches
2007-11-20 7:41 ` Simon Horman
[not found] ` <f047768599df11a74301f81e61903c87417ea9e4.1195454436.git.joe@perches.com>
2007-11-20 1:53 ` [PATCH 52/59] net/ipv4: " Joe Perches
2007-11-20 7:48 ` David Miller
2007-11-20 6:59 ` Simon Horman
[not found] ` <ebeb1446c117c71636bb6f2308645a85f81edac5.1195454434.git.joe@perches.com>
2007-11-20 1:47 ` [PATCH 05/59] arch/s390: " Joe Perches
2007-11-20 8:27 ` Heiko Carstens
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1195523331-15303-37-git-send-email-joe@perches.com \
--to=joe@perches.com \
--cc=jchapman@katalix.com \
--cc=jgarzik@pobox.com \
--cc=linux-driver@qlogic.com \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=ram.vepa@neterion.com \
--cc=rl@hellgate.ch \
--cc=santosh.rastapur@neterion.com \
--cc=sivakumar.subramani@neterion.com \
--cc=sreenivasa.honnur@neterion.com \
--cc=venza@brownhat.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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®