* [PATCH 01/11] arch/arm: Remove pr_<level> uses of KERN_<level>
[not found] <cover.1284267142.git.joe@perches.com>
@ 2010-09-12 5:10 ` Joe Perches
2010-09-14 7:37 ` Eric Miao
2010-09-12 5:10 ` [PATCH 02/11] arch/avr32: " Joe Perches
` (9 subsequent siblings)
10 siblings, 1 reply; 22+ messages in thread
From: Joe Perches @ 2010-09-12 5:10 UTC (permalink / raw)
To: Jiri Kosina; +Cc: Eric Miao, Russell King, linux-arm-kernel, linux-kernel
Signed-off-by: Joe Perches <joe@perches.com>
---
arch/arm/mach-pxa/cpufreq-pxa2xx.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/arch/arm/mach-pxa/cpufreq-pxa2xx.c b/arch/arm/mach-pxa/cpufreq-pxa2xx.c
index 50d5939..58093d9 100644
--- a/arch/arm/mach-pxa/cpufreq-pxa2xx.c
+++ b/arch/arm/mach-pxa/cpufreq-pxa2xx.c
@@ -312,8 +312,7 @@ static int pxa_set_target(struct cpufreq_policy *policy,
freqs.cpu = policy->cpu;
if (freq_debug)
- pr_debug(KERN_INFO "Changing CPU frequency to %d Mhz, "
- "(SDRAM %d Mhz)\n",
+ pr_debug("Changing CPU frequency to %d Mhz, (SDRAM %d Mhz)\n",
freqs.new / 1000, (pxa_freq_settings[idx].div2) ?
(new_freq_mem / 2000) : (new_freq_mem / 1000));
--
1.7.3.rc1
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [PATCH 02/11] arch/avr32: Remove pr_<level> uses of KERN_<level>
[not found] <cover.1284267142.git.joe@perches.com>
2010-09-12 5:10 ` [PATCH 01/11] arch/arm: Remove pr_<level> uses of KERN_<level> Joe Perches
@ 2010-09-12 5:10 ` Joe Perches
2010-09-12 5:10 ` [PATCH 03/11] arch/microblaze: " Joe Perches
` (8 subsequent siblings)
10 siblings, 0 replies; 22+ messages in thread
From: Joe Perches @ 2010-09-12 5:10 UTC (permalink / raw)
To: Jiri Kosina; +Cc: Haavard Skinnemoen, linux-kernel
Signed-off-by: Joe Perches <joe@perches.com>
---
arch/avr32/mach-at32ap/at32ap700x.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/avr32/mach-at32ap/at32ap700x.c b/arch/avr32/mach-at32ap/at32ap700x.c
index e67c999..09a9399 100644
--- a/arch/avr32/mach-at32ap/at32ap700x.c
+++ b/arch/avr32/mach-at32ap/at32ap700x.c
@@ -256,8 +256,8 @@ static long pll1_set_rate(struct clk *clk, unsigned long rate, int apply)
return -EINVAL;
if (clk->users > 0)
return -EBUSY;
- pr_debug(KERN_INFO "clk %s: new rate %lu (actual rate %lu)\n",
- clk->name, rate, actual_rate);
+ pr_debug("clk %s: new rate %lu (actual rate %lu)\n",
+ clk->name, rate, actual_rate);
pm_writel(PLL1, ctrl);
}
--
1.7.3.rc1
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [PATCH 03/11] arch/microblaze: Remove pr_<level> uses of KERN_<level>
[not found] <cover.1284267142.git.joe@perches.com>
2010-09-12 5:10 ` [PATCH 01/11] arch/arm: Remove pr_<level> uses of KERN_<level> Joe Perches
2010-09-12 5:10 ` [PATCH 02/11] arch/avr32: " Joe Perches
@ 2010-09-12 5:10 ` Joe Perches
2010-09-13 7:09 ` Michal Simek
2010-09-12 5:10 ` [PATCH 04/11] arch/mips: " Joe Perches
` (7 subsequent siblings)
10 siblings, 1 reply; 22+ messages in thread
From: Joe Perches @ 2010-09-12 5:10 UTC (permalink / raw)
To: Jiri Kosina; +Cc: Michal Simek, microblaze-uclinux, linux-kernel
Signed-off-by: Joe Perches <joe@perches.com>
---
arch/microblaze/kernel/exceptions.c | 16 ++++++----------
1 files changed, 6 insertions(+), 10 deletions(-)
diff --git a/arch/microblaze/kernel/exceptions.c b/arch/microblaze/kernel/exceptions.c
index b98ee8d..7dd4d12 100644
--- a/arch/microblaze/kernel/exceptions.c
+++ b/arch/microblaze/kernel/exceptions.c
@@ -86,8 +86,7 @@ asmlinkage void full_exception(struct pt_regs *regs, unsigned int type,
switch (type & 0x1F) {
case MICROBLAZE_ILL_OPCODE_EXCEPTION:
if (user_mode(regs)) {
- pr_debug(KERN_WARNING "Illegal opcode exception " \
- "in user mode.\n");
+ pr_debug("Illegal opcode exception in user mode\n");
_exception(SIGILL, regs, ILL_ILLOPC, addr);
return;
}
@@ -97,8 +96,7 @@ asmlinkage void full_exception(struct pt_regs *regs, unsigned int type,
break;
case MICROBLAZE_IBUS_EXCEPTION:
if (user_mode(regs)) {
- pr_debug(KERN_WARNING "Instruction bus error " \
- "exception in user mode.\n");
+ pr_debug("Instruction bus error exception in user mode\n");
_exception(SIGBUS, regs, BUS_ADRERR, addr);
return;
}
@@ -108,8 +106,7 @@ asmlinkage void full_exception(struct pt_regs *regs, unsigned int type,
break;
case MICROBLAZE_DBUS_EXCEPTION:
if (user_mode(regs)) {
- pr_debug(KERN_WARNING "Data bus error exception " \
- "in user mode.\n");
+ pr_debug("Data bus error exception in user mode\n");
_exception(SIGBUS, regs, BUS_ADRERR, addr);
return;
}
@@ -119,8 +116,7 @@ asmlinkage void full_exception(struct pt_regs *regs, unsigned int type,
break;
case MICROBLAZE_DIV_ZERO_EXCEPTION:
if (user_mode(regs)) {
- pr_debug(KERN_WARNING "Divide by zero exception " \
- "in user mode\n");
+ pr_debug("Divide by zero exception in user mode\n");
_exception(SIGILL, regs, FPE_INTDIV, addr);
return;
}
@@ -129,7 +125,7 @@ asmlinkage void full_exception(struct pt_regs *regs, unsigned int type,
die("Divide by zero exception", regs, SIGBUS);
break;
case MICROBLAZE_FPU_EXCEPTION:
- pr_debug(KERN_WARNING "FPU exception\n");
+ pr_debug("FPU exception\n");
/* IEEE FP exception */
/* I removed fsr variable and use code var for storing fsr */
if (fsr & FSR_IO)
@@ -147,7 +143,7 @@ asmlinkage void full_exception(struct pt_regs *regs, unsigned int type,
#ifdef CONFIG_MMU
case MICROBLAZE_PRIVILEGED_EXCEPTION:
- pr_debug(KERN_WARNING "Privileged exception\n");
+ pr_debug("Privileged exception\n");
/* "brk r0,r0" - used as debug breakpoint - old toolchain */
if (get_user(code, (unsigned long *)regs->pc) == 0
&& code == 0x980c0000) {
--
1.7.3.rc1
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [PATCH 04/11] arch/mips: Remove pr_<level> uses of KERN_<level>
[not found] <cover.1284267142.git.joe@perches.com>
` (2 preceding siblings ...)
2010-09-12 5:10 ` [PATCH 03/11] arch/microblaze: " Joe Perches
@ 2010-09-12 5:10 ` Joe Perches
2010-09-18 23:59 ` Ralf Baechle
2010-09-12 5:10 ` [PATCH 05/11] arch/powerpc: " Joe Perches
` (6 subsequent siblings)
10 siblings, 1 reply; 22+ messages in thread
From: Joe Perches @ 2010-09-12 5:10 UTC (permalink / raw)
To: Jiri Kosina; +Cc: Ralf Baechle, linux-mips, linux-kernel
Signed-off-by: Joe Perches <joe@perches.com>
---
arch/mips/kernel/irq-gic.c | 2 +-
arch/mips/pci/pci-rc32434.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/mips/kernel/irq-gic.c b/arch/mips/kernel/irq-gic.c
index b181f2f..8d8a6ba 100644
--- a/arch/mips/kernel/irq-gic.c
+++ b/arch/mips/kernel/irq-gic.c
@@ -131,7 +131,7 @@ static int gic_set_affinity(unsigned int irq, const struct cpumask *cpumask)
int i;
irq -= _irqbase;
- pr_debug(KERN_DEBUG "%s(%d) called\n", __func__, irq);
+ pr_debug("%s(%d) called\n", __func__, irq);
cpumask_and(&tmp, cpumask, cpu_online_mask);
if (cpus_empty(tmp))
return -1;
diff --git a/arch/mips/pci/pci-rc32434.c b/arch/mips/pci/pci-rc32434.c
index 71f7d27..f31218e 100644
--- a/arch/mips/pci/pci-rc32434.c
+++ b/arch/mips/pci/pci-rc32434.c
@@ -118,7 +118,7 @@ static int __init rc32434_pcibridge_init(void)
if (!((pcicvalue == PCIM_H_EA) ||
(pcicvalue == PCIM_H_IA_FIX) ||
(pcicvalue == PCIM_H_IA_RR))) {
- pr_err(KERN_ERR "PCI init error!!!\n");
+ pr_err("PCI init error!!!\n");
/* Not in Host Mode, return ERROR */
return -1;
}
--
1.7.3.rc1
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [PATCH 05/11] arch/powerpc: Remove pr_<level> uses of KERN_<level>
[not found] <cover.1284267142.git.joe@perches.com>
` (3 preceding siblings ...)
2010-09-12 5:10 ` [PATCH 04/11] arch/mips: " Joe Perches
@ 2010-09-12 5:10 ` Joe Perches
2010-09-12 5:10 ` [PATCH 06/11] arch/x86: " Joe Perches
` (5 subsequent siblings)
10 siblings, 0 replies; 22+ messages in thread
From: Joe Perches @ 2010-09-12 5:10 UTC (permalink / raw)
To: Jiri Kosina
Cc: Avi Kivity, Marcelo Tosatti, Alexander Graf,
Benjamin Herrenschmidt, Paul Mackerras, kvm, kvm-ppc,
linuxppc-dev, linux-kernel
Signed-off-by: Joe Perches <joe@perches.com>
---
arch/powerpc/kvm/emulate.c | 4 ++--
arch/powerpc/sysdev/pmi.c | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/powerpc/kvm/emulate.c b/arch/powerpc/kvm/emulate.c
index 4568ec3..b83ba58 100644
--- a/arch/powerpc/kvm/emulate.c
+++ b/arch/powerpc/kvm/emulate.c
@@ -145,7 +145,7 @@ int kvmppc_emulate_instruction(struct kvm_run *run, struct kvm_vcpu *vcpu)
/* this default type might be overwritten by subcategories */
kvmppc_set_exit_type(vcpu, EMULATED_INST_EXITS);
- pr_debug(KERN_INFO "Emulating opcode %d / %d\n", get_op(inst), get_xop(inst));
+ pr_debug("Emulating opcode %d / %d\n", get_op(inst), get_xop(inst));
switch (get_op(inst)) {
case OP_TRAP:
@@ -275,7 +275,7 @@ int kvmppc_emulate_instruction(struct kvm_run *run, struct kvm_vcpu *vcpu)
{
u64 jd = get_tb() - vcpu->arch.dec_jiffies;
kvmppc_set_gpr(vcpu, rt, vcpu->arch.dec - jd);
- pr_debug(KERN_INFO "mfDEC: %x - %llx = %lx\n",
+ pr_debug("mfDEC: %x - %llx = %lx\n",
vcpu->arch.dec, jd,
kvmppc_get_gpr(vcpu, rt));
break;
diff --git a/arch/powerpc/sysdev/pmi.c b/arch/powerpc/sysdev/pmi.c
index 24a0bb9..4260f36 100644
--- a/arch/powerpc/sysdev/pmi.c
+++ b/arch/powerpc/sysdev/pmi.c
@@ -114,7 +114,7 @@ static void pmi_notify_handlers(struct work_struct *work)
spin_lock(&data->handler_spinlock);
list_for_each_entry(handler, &data->handler, node) {
- pr_debug(KERN_INFO "pmi: notifying handler %p\n", handler);
+ pr_debug("pmi: notifying handler %p\n", handler);
if (handler->type == data->msg.type)
handler->handle_pmi_message(data->msg);
}
--
1.7.3.rc1
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [PATCH 06/11] arch/x86: Remove pr_<level> uses of KERN_<level>
[not found] <cover.1284267142.git.joe@perches.com>
` (4 preceding siblings ...)
2010-09-12 5:10 ` [PATCH 05/11] arch/powerpc: " Joe Perches
@ 2010-09-12 5:10 ` Joe Perches
2010-09-12 7:34 ` [tip:x86/debug] x86: " tip-bot for Joe Perches
2010-09-12 5:10 ` [PATCH 07/11] drivers/infiniband: " Joe Perches
` (4 subsequent siblings)
10 siblings, 1 reply; 22+ messages in thread
From: Joe Perches @ 2010-09-12 5:10 UTC (permalink / raw)
To: Jiri Kosina
Cc: Thomas Gleixner, Ingo Molnar, H. Peter Anvin, x86, linux-kernel
Signed-off-by: Joe Perches <joe@perches.com>
---
arch/x86/kernel/apb_timer.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/x86/kernel/apb_timer.c b/arch/x86/kernel/apb_timer.c
index 8dd7780..4004417 100644
--- a/arch/x86/kernel/apb_timer.c
+++ b/arch/x86/kernel/apb_timer.c
@@ -398,7 +398,7 @@ static int apbt_cpuhp_notify(struct notifier_block *n,
}
break;
default:
- pr_debug(KERN_INFO "APBT notified %lu, no action\n", action);
+ pr_debug("APBT notified %lu, no action\n", action);
}
return NOTIFY_OK;
}
@@ -552,7 +552,7 @@ bad_count:
pr_debug("APB CS going back %lx:%lx:%lx ",
t2, last_read, t2 - last_read);
bad_count_x3:
- pr_debug(KERN_INFO "tripple check enforced\n");
+ pr_debug("triple check enforced\n");
t0 = apbt_readl(phy_cs_timer_id,
APBTMR_N_CURRENT_VALUE);
udelay(1);
--
1.7.3.rc1
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [PATCH 07/11] drivers/infiniband: Remove pr_<level> uses of KERN_<level>
[not found] <cover.1284267142.git.joe@perches.com>
` (5 preceding siblings ...)
2010-09-12 5:10 ` [PATCH 06/11] arch/x86: " Joe Perches
@ 2010-09-12 5:10 ` Joe Perches
2010-09-29 3:51 ` Roland Dreier
2010-09-12 5:10 ` [PATCH 08/11] drivers/net/skfp: " Joe Perches
` (3 subsequent siblings)
10 siblings, 1 reply; 22+ messages in thread
From: Joe Perches @ 2010-09-12 5:10 UTC (permalink / raw)
To: Jiri Kosina
Cc: Tom Tucker, Steve Wise, Roland Dreier, Sean Hefty, Hal Rosenstock,
linux-rdma, linux-kernel
Signed-off-by: Joe Perches <joe@perches.com>
---
drivers/infiniband/hw/amso1100/c2_intr.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/infiniband/hw/amso1100/c2_intr.c b/drivers/infiniband/hw/amso1100/c2_intr.c
index 3b50954..0ebe4e8 100644
--- a/drivers/infiniband/hw/amso1100/c2_intr.c
+++ b/drivers/infiniband/hw/amso1100/c2_intr.c
@@ -62,8 +62,8 @@ void c2_rnic_interrupt(struct c2_dev *c2dev)
static void handle_mq(struct c2_dev *c2dev, u32 mq_index)
{
if (c2dev->qptr_array[mq_index] == NULL) {
- pr_debug(KERN_INFO "handle_mq: stray activity for mq_index=%d\n",
- mq_index);
+ pr_debug("handle_mq: stray activity for mq_index=%d\n",
+ mq_index);
return;
}
--
1.7.3.rc1
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [PATCH 08/11] drivers/net/skfp: Remove pr_<level> uses of KERN_<level>
[not found] <cover.1284267142.git.joe@perches.com>
` (6 preceding siblings ...)
2010-09-12 5:10 ` [PATCH 07/11] drivers/infiniband: " Joe Perches
@ 2010-09-12 5:10 ` Joe Perches
2010-09-14 3:04 ` David Miller
2010-09-12 5:10 ` [PATCH 09/11] drivers/staging/msm: " Joe Perches
` (2 subsequent siblings)
10 siblings, 1 reply; 22+ messages in thread
From: Joe Perches @ 2010-09-12 5:10 UTC (permalink / raw)
To: Jiri Kosina; +Cc: netdev, linux-kernel
Signed-off-by: Joe Perches <joe@perches.com>
---
drivers/net/skfp/skfddi.c | 84 ++++++++++++++++++++++----------------------
1 files changed, 42 insertions(+), 42 deletions(-)
diff --git a/drivers/net/skfp/skfddi.c b/drivers/net/skfp/skfddi.c
index 31b2dab..8a12bd9 100644
--- a/drivers/net/skfp/skfddi.c
+++ b/drivers/net/skfp/skfddi.c
@@ -209,7 +209,7 @@ static int skfp_init_one(struct pci_dev *pdev,
void __iomem *mem;
int err;
- pr_debug(KERN_INFO "entering skfp_init_one\n");
+ pr_debug("entering skfp_init_one\n");
if (num_boards == 0)
printk("%s\n", boot_msg);
@@ -385,7 +385,7 @@ static int skfp_driver_init(struct net_device *dev)
skfddi_priv *bp = &smc->os;
int err = -EIO;
- pr_debug(KERN_INFO "entering skfp_driver_init\n");
+ pr_debug("entering skfp_driver_init\n");
// set the io address in private structures
bp->base_addr = dev->base_addr;
@@ -405,7 +405,7 @@ static int skfp_driver_init(struct net_device *dev)
// Determine the required size of the 'shared' memory area.
bp->SharedMemSize = mac_drv_check_space();
- pr_debug(KERN_INFO "Memory for HWM: %ld\n", bp->SharedMemSize);
+ pr_debug("Memory for HWM: %ld\n", bp->SharedMemSize);
if (bp->SharedMemSize > 0) {
bp->SharedMemSize += 16; // for descriptor alignment
@@ -429,13 +429,13 @@ static int skfp_driver_init(struct net_device *dev)
card_stop(smc); // Reset adapter.
- pr_debug(KERN_INFO "mac_drv_init()..\n");
+ pr_debug("mac_drv_init()..\n");
if (mac_drv_init(smc) != 0) {
- pr_debug(KERN_INFO "mac_drv_init() failed.\n");
+ pr_debug("mac_drv_init() failed\n");
goto fail;
}
read_address(smc, NULL);
- pr_debug(KERN_INFO "HW-Addr: %pMF\n", smc->hw.fddi_canon_addr.a);
+ pr_debug("HW-Addr: %pMF\n", smc->hw.fddi_canon_addr.a);
memcpy(dev->dev_addr, smc->hw.fddi_canon_addr.a, 6);
smt_reset_defaults(smc, 0);
@@ -485,7 +485,7 @@ static int skfp_open(struct net_device *dev)
struct s_smc *smc = netdev_priv(dev);
int err;
- pr_debug(KERN_INFO "entering skfp_open\n");
+ pr_debug("entering skfp_open\n");
/* Register IRQ - support shared interrupts by passing device ptr */
err = request_irq(dev->irq, skfp_interrupt, IRQF_SHARED,
dev->name, dev);
@@ -856,12 +856,12 @@ static void skfp_ctl_set_multicast_list_wo_lock(struct net_device *dev)
/* Enable promiscuous mode, if necessary */
if (dev->flags & IFF_PROMISC) {
mac_drv_rx_mode(smc, RX_ENABLE_PROMISC);
- pr_debug(KERN_INFO "PROMISCUOUS MODE ENABLED\n");
+ pr_debug("PROMISCUOUS MODE ENABLED\n");
}
/* Else, update multicast address table */
else {
mac_drv_rx_mode(smc, RX_DISABLE_PROMISC);
- pr_debug(KERN_INFO "PROMISCUOUS MODE DISABLED\n");
+ pr_debug("PROMISCUOUS MODE DISABLED\n");
// Reset all MC addresses
mac_clear_multicast(smc);
@@ -869,7 +869,7 @@ static void skfp_ctl_set_multicast_list_wo_lock(struct net_device *dev)
if (dev->flags & IFF_ALLMULTI) {
mac_drv_rx_mode(smc, RX_ENABLE_ALLMULTI);
- pr_debug(KERN_INFO "ENABLE ALL MC ADDRESSES\n");
+ pr_debug("ENABLE ALL MC ADDRESSES\n");
} else if (!netdev_mc_empty(dev)) {
if (netdev_mc_count(dev) <= FPMAX_MULTICAST) {
/* use exact filtering */
@@ -880,18 +880,18 @@ static void skfp_ctl_set_multicast_list_wo_lock(struct net_device *dev)
(struct fddi_addr *)ha->addr,
1);
- pr_debug(KERN_INFO "ENABLE MC ADDRESS: %pMF\n",
- ha->addr);
+ pr_debug("ENABLE MC ADDRESS: %pMF\n",
+ ha->addr);
}
} else { // more MC addresses than HW supports
mac_drv_rx_mode(smc, RX_ENABLE_ALLMULTI);
- pr_debug(KERN_INFO "ENABLE ALL MC ADDRESSES\n");
+ pr_debug("ENABLE ALL MC ADDRESSES\n");
}
} else { // no MC addresses
- pr_debug(KERN_INFO "DISABLE ALL MC ADDRESSES\n");
+ pr_debug("DISABLE ALL MC ADDRESSES\n");
}
/* Update adapter filters */
@@ -1045,7 +1045,7 @@ static netdev_tx_t skfp_send_pkt(struct sk_buff *skb,
struct s_smc *smc = netdev_priv(dev);
skfddi_priv *bp = &smc->os;
- pr_debug(KERN_INFO "skfp_send_pkt\n");
+ pr_debug("skfp_send_pkt\n");
/*
* Verify that incoming transmit request is OK
@@ -1114,13 +1114,13 @@ static void send_queued_packets(struct s_smc *smc)
int frame_status; // HWM tx frame status.
- pr_debug(KERN_INFO "send queued packets\n");
+ pr_debug("send queued packets\n");
for (;;) {
// send first buffer from queue
skb = skb_dequeue(&bp->SendSkbQueue);
if (!skb) {
- pr_debug(KERN_INFO "queue empty\n");
+ pr_debug("queue empty\n");
return;
} // queue empty !
@@ -1232,7 +1232,7 @@ static void CheckSourceAddress(unsigned char *frame, unsigned char *hw_addr)
static void ResetAdapter(struct s_smc *smc)
{
- pr_debug(KERN_INFO "[fddi: ResetAdapter]\n");
+ pr_debug("[fddi: ResetAdapter]\n");
// Stop the adapter.
@@ -1278,7 +1278,7 @@ void llc_restart_tx(struct s_smc *smc)
{
skfddi_priv *bp = &smc->os;
- pr_debug(KERN_INFO "[llc_restart_tx]\n");
+ pr_debug("[llc_restart_tx]\n");
// Try to send queued packets
spin_unlock(&bp->DriverLock);
@@ -1308,7 +1308,7 @@ void *mac_drv_get_space(struct s_smc *smc, unsigned int size)
{
void *virt;
- pr_debug(KERN_INFO "mac_drv_get_space (%d bytes), ", size);
+ pr_debug("mac_drv_get_space (%d bytes), ", size);
virt = (void *) (smc->os.SharedMemAddr + smc->os.SharedMemHeap);
if ((smc->os.SharedMemHeap + size) > smc->os.SharedMemSize) {
@@ -1317,9 +1317,9 @@ void *mac_drv_get_space(struct s_smc *smc, unsigned int size)
}
smc->os.SharedMemHeap += size; // Move heap pointer.
- pr_debug(KERN_INFO "mac_drv_get_space end\n");
- pr_debug(KERN_INFO "virt addr: %lx\n", (ulong) virt);
- pr_debug(KERN_INFO "bus addr: %lx\n", (ulong)
+ pr_debug("mac_drv_get_space end\n");
+ pr_debug("virt addr: %lx\n", (ulong) virt);
+ pr_debug("bus addr: %lx\n", (ulong)
(smc->os.SharedMemDMA +
((char *) virt - (char *)smc->os.SharedMemAddr)));
return (virt);
@@ -1349,7 +1349,7 @@ void *mac_drv_get_desc_mem(struct s_smc *smc, unsigned int size)
char *virt;
- pr_debug(KERN_INFO "mac_drv_get_desc_mem\n");
+ pr_debug("mac_drv_get_desc_mem\n");
// Descriptor memory must be aligned on 16-byte boundary.
@@ -1493,7 +1493,7 @@ void mac_drv_tx_complete(struct s_smc *smc, volatile struct s_smt_fp_txd *txd)
{
struct sk_buff *skb;
- pr_debug(KERN_INFO "entering mac_drv_tx_complete\n");
+ pr_debug("entering mac_drv_tx_complete\n");
// Check if this TxD points to a skb
if (!(skb = txd->txd_os.skb)) {
@@ -1513,7 +1513,7 @@ void mac_drv_tx_complete(struct s_smc *smc, volatile struct s_smt_fp_txd *txd)
// free the skb
dev_kfree_skb_irq(skb);
- pr_debug(KERN_INFO "leaving mac_drv_tx_complete\n");
+ pr_debug("leaving mac_drv_tx_complete\n");
} // mac_drv_tx_complete
@@ -1580,7 +1580,7 @@ void mac_drv_rx_complete(struct s_smc *smc, volatile struct s_smt_fp_rxd *rxd,
unsigned short ri;
u_int RifLength;
- pr_debug(KERN_INFO "entering mac_drv_rx_complete (len=%d)\n", len);
+ pr_debug("entering mac_drv_rx_complete (len=%d)\n", len);
if (frag_count != 1) { // This is not allowed to happen.
printk("fddi: Multi-fragment receive!\n");
@@ -1589,7 +1589,7 @@ void mac_drv_rx_complete(struct s_smc *smc, volatile struct s_smt_fp_rxd *rxd,
}
skb = rxd->rxd_os.skb;
if (!skb) {
- pr_debug(KERN_INFO "No skb in rxd\n");
+ pr_debug("No skb in rxd\n");
smc->os.MacStat.gen.rx_errors++;
goto RequeueRxd;
}
@@ -1619,7 +1619,7 @@ void mac_drv_rx_complete(struct s_smc *smc, volatile struct s_smt_fp_rxd *rxd,
else {
int n;
// goos: RIF removal has still to be tested
- pr_debug(KERN_INFO "RIF found\n");
+ pr_debug("RIF found\n");
// Get RIF length from Routing Control (RC) field.
cp = virt + FDDI_MAC_HDR_LEN; // Point behind MAC header.
@@ -1664,7 +1664,7 @@ void mac_drv_rx_complete(struct s_smc *smc, volatile struct s_smt_fp_rxd *rxd,
return;
RequeueRxd:
- pr_debug(KERN_INFO "Rx: re-queue RXD.\n");
+ pr_debug("Rx: re-queue RXD.\n");
mac_drv_requeue_rxd(smc, rxd, frag_count);
smc->os.MacStat.gen.rx_errors++; // Count receive packets
// not indicated.
@@ -1775,7 +1775,7 @@ void mac_drv_fill_rxd(struct s_smc *smc)
struct sk_buff *skb;
volatile struct s_smt_fp_rxd *rxd;
- pr_debug(KERN_INFO "entering mac_drv_fill_rxd\n");
+ pr_debug("entering mac_drv_fill_rxd\n");
// Walk through the list of free receive buffers, passing receive
// buffers to the HWM as long as RXDs are available.
@@ -1783,7 +1783,7 @@ void mac_drv_fill_rxd(struct s_smc *smc)
MaxFrameSize = smc->os.MaxFrameSize;
// Check if there is any RXD left.
while (HWM_GET_RX_FREE(smc) > 0) {
- pr_debug(KERN_INFO ".\n");
+ pr_debug(".\n");
rxd = HWM_GET_CURR_RXD(smc);
skb = alloc_skb(MaxFrameSize + 3, GFP_ATOMIC);
@@ -1814,7 +1814,7 @@ void mac_drv_fill_rxd(struct s_smc *smc)
hwm_rx_frag(smc, v_addr, b_addr, MaxFrameSize,
FIRST_FRAG | LAST_FRAG);
}
- pr_debug(KERN_INFO "leaving mac_drv_fill_rxd\n");
+ pr_debug("leaving mac_drv_fill_rxd\n");
} // mac_drv_fill_rxd
@@ -2034,17 +2034,17 @@ void smt_stat_counter(struct s_smc *smc, int stat)
{
// BOOLEAN RingIsUp ;
- pr_debug(KERN_INFO "smt_stat_counter\n");
+ pr_debug("smt_stat_counter\n");
switch (stat) {
case 0:
- pr_debug(KERN_INFO "Ring operational change.\n");
+ pr_debug("Ring operational change.\n");
break;
case 1:
- pr_debug(KERN_INFO "Receive fifo overflow.\n");
+ pr_debug("Receive fifo overflow.\n");
smc->os.MacStat.gen.rx_errors++;
break;
default:
- pr_debug(KERN_INFO "Unknown status (%d).\n", stat);
+ pr_debug("Unknown status (%d).\n", stat);
break;
}
} // smt_stat_counter
@@ -2100,10 +2100,10 @@ void cfm_state_change(struct s_smc *smc, int c_state)
s = "SC11_C_WRAP_S";
break;
default:
- pr_debug(KERN_INFO "cfm_state_change: unknown %d\n", c_state);
+ pr_debug("cfm_state_change: unknown %d\n", c_state);
return;
}
- pr_debug(KERN_INFO "cfm_state_change: %s\n", s);
+ pr_debug("cfm_state_change: %s\n", s);
#endif // DRIVERDEBUG
} // cfm_state_change
@@ -2158,7 +2158,7 @@ void ecm_state_change(struct s_smc *smc, int e_state)
s = "unknown";
break;
}
- pr_debug(KERN_INFO "ecm_state_change: %s\n", s);
+ pr_debug("ecm_state_change: %s\n", s);
#endif //DRIVERDEBUG
} // ecm_state_change
@@ -2213,7 +2213,7 @@ void rmt_state_change(struct s_smc *smc, int r_state)
s = "unknown";
break;
}
- pr_debug(KERN_INFO "[rmt_state_change: %s]\n", s);
+ pr_debug("[rmt_state_change: %s]\n", s);
#endif // DRIVERDEBUG
} // rmt_state_change
@@ -2233,7 +2233,7 @@ void rmt_state_change(struct s_smc *smc, int r_state)
************************/
void drv_reset_indication(struct s_smc *smc)
{
- pr_debug(KERN_INFO "entering drv_reset_indication\n");
+ pr_debug("entering drv_reset_indication\n");
smc->os.ResetRequested = TRUE; // Set flag.
--
1.7.3.rc1
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [PATCH 09/11] drivers/staging/msm: Remove pr_<level> uses of KERN_<level>
[not found] <cover.1284267142.git.joe@perches.com>
` (7 preceding siblings ...)
2010-09-12 5:10 ` [PATCH 08/11] drivers/net/skfp: " Joe Perches
@ 2010-09-12 5:10 ` Joe Perches
2010-09-12 5:10 ` [PATCH 10/11] drivers/usb/gadget: " Joe Perches
2010-09-12 5:10 ` [PATCH 11/11] sound: " Joe Perches
10 siblings, 0 replies; 22+ messages in thread
From: Joe Perches @ 2010-09-12 5:10 UTC (permalink / raw)
To: Jiri Kosina; +Cc: Greg Kroah-Hartman, devel, linux-kernel
Signed-off-by: Joe Perches <joe@perches.com>
---
drivers/staging/msm/staging-devices.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/staging/msm/staging-devices.c b/drivers/staging/msm/staging-devices.c
index 861f330..d6cd919 100644
--- a/drivers/staging/msm/staging-devices.c
+++ b/drivers/staging/msm/staging-devices.c
@@ -166,7 +166,7 @@ static void __init qsd8x50_allocate_memory_regions(void)
msm_fb_resources[0].start = __pa(addr);
msm_fb_resources[0].end = msm_fb_resources[0].start + size - 1;
- pr_info(KERN_ERR "using %lu bytes of SMI at %lx physical for fb\n",
+ pr_info("using %lu bytes of SMI at %lx physical for fb\n",
size, (unsigned long)addr);
}
--
1.7.3.rc1
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [PATCH 10/11] drivers/usb/gadget: Remove pr_<level> uses of KERN_<level>
[not found] <cover.1284267142.git.joe@perches.com>
` (8 preceding siblings ...)
2010-09-12 5:10 ` [PATCH 09/11] drivers/staging/msm: " Joe Perches
@ 2010-09-12 5:10 ` Joe Perches
2010-09-21 16:11 ` Joe Perches
2010-09-12 5:10 ` [PATCH 11/11] sound: " Joe Perches
10 siblings, 1 reply; 22+ messages in thread
From: Joe Perches @ 2010-09-12 5:10 UTC (permalink / raw)
To: Jiri Kosina; +Cc: David Brownell, Greg Kroah-Hartman, linux-usb, linux-kernel
Signed-off-by: Joe Perches <joe@perches.com>
---
drivers/usb/gadget/r8a66597-udc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/usb/gadget/r8a66597-udc.c b/drivers/usb/gadget/r8a66597-udc.c
index 2456ccd..8040c85 100644
--- a/drivers/usb/gadget/r8a66597-udc.c
+++ b/drivers/usb/gadget/r8a66597-udc.c
@@ -274,7 +274,7 @@ static int pipe_buffer_setting(struct r8a66597 *r8a66597,
}
if (buf_bsize && ((bufnum + 16) >= R8A66597_MAX_BUFNUM)) {
- pr_err(KERN_ERR "r8a66597 pipe memory is insufficient\n");
+ pr_err("r8a66597 pipe memory is insufficient\n");
return -ENOMEM;
}
--
1.7.3.rc1
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [PATCH 11/11] sound: Remove pr_<level> uses of KERN_<level>
[not found] <cover.1284267142.git.joe@perches.com>
` (9 preceding siblings ...)
2010-09-12 5:10 ` [PATCH 10/11] drivers/usb/gadget: " Joe Perches
@ 2010-09-12 5:10 ` Joe Perches
2010-09-13 8:25 ` Mark Brown
` (2 more replies)
10 siblings, 3 replies; 22+ messages in thread
From: Joe Perches @ 2010-09-12 5:10 UTC (permalink / raw)
To: Jiri Kosina
Cc: Geoff Levand, Jaroslav Kysela, Takashi Iwai, Liam Girdwood,
Mark Brown, linuxppc-dev, cbe-oss-dev, linux-kernel, alsa-devel
Signed-off-by: Joe Perches <joe@perches.com>
---
sound/ppc/snd_ps3.c | 2 +-
sound/soc/s3c24xx/s3c-dma.c | 3 +--
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/sound/ppc/snd_ps3.c b/sound/ppc/snd_ps3.c
index 2f12da4..581a670 100644
--- a/sound/ppc/snd_ps3.c
+++ b/sound/ppc/snd_ps3.c
@@ -579,7 +579,7 @@ static int snd_ps3_delay_to_bytes(struct snd_pcm_substream *substream,
rate * delay_ms / 1000)
* substream->runtime->channels;
- pr_debug(KERN_ERR "%s: time=%d rate=%d bytes=%ld, frames=%d, ret=%d\n",
+ pr_debug("%s: time=%d rate=%d bytes=%ld, frames=%d, ret=%d\n",
__func__,
delay_ms,
rate,
diff --git a/sound/soc/s3c24xx/s3c-dma.c b/sound/soc/s3c24xx/s3c-dma.c
index 1b61c23..f1b1bc4 100644
--- a/sound/soc/s3c24xx/s3c-dma.c
+++ b/sound/soc/s3c24xx/s3c-dma.c
@@ -94,8 +94,7 @@ static void s3c_dma_enqueue(struct snd_pcm_substream *substream)
if ((pos + len) > prtd->dma_end) {
len = prtd->dma_end - pos;
- pr_debug(KERN_DEBUG "%s: corrected dma len %ld\n",
- __func__, len);
+ pr_debug("%s: corrected dma len %ld\n", __func__, len);
}
ret = s3c2410_dma_enqueue(prtd->params->channel,
--
1.7.3.rc1
^ permalink raw reply related [flat|nested] 22+ messages in thread
* [tip:x86/debug] x86: Remove pr_<level> uses of KERN_<level>
2010-09-12 5:10 ` [PATCH 06/11] arch/x86: " Joe Perches
@ 2010-09-12 7:34 ` tip-bot for Joe Perches
0 siblings, 0 replies; 22+ messages in thread
From: tip-bot for Joe Perches @ 2010-09-12 7:34 UTC (permalink / raw)
To: linux-tip-commits; +Cc: linux-kernel, hpa, mingo, trivial, joe, tglx, mingo
Commit-ID: d0ed0c32662e756e7daf85e70a5a27a9c1111331
Gitweb: http://git.kernel.org/tip/d0ed0c32662e756e7daf85e70a5a27a9c1111331
Author: Joe Perches <joe@perches.com>
AuthorDate: Sat, 11 Sep 2010 22:10:54 -0700
Committer: Ingo Molnar <mingo@elte.hu>
CommitDate: Sun, 12 Sep 2010 09:32:31 +0200
x86: Remove pr_<level> uses of KERN_<level>
Signed-off-by: Joe Perches <joe@perches.com>
Cc: Jiri Kosina <trivial@kernel.org>
LKML-Reference: <d40c60f4b036a26db8492848695bdafaa3b42791.1284267142.git.joe@perches.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
---
arch/x86/kernel/apb_timer.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/x86/kernel/apb_timer.c b/arch/x86/kernel/apb_timer.c
index 8dd7780..4004417 100644
--- a/arch/x86/kernel/apb_timer.c
+++ b/arch/x86/kernel/apb_timer.c
@@ -398,7 +398,7 @@ static int apbt_cpuhp_notify(struct notifier_block *n,
}
break;
default:
- pr_debug(KERN_INFO "APBT notified %lu, no action\n", action);
+ pr_debug("APBT notified %lu, no action\n", action);
}
return NOTIFY_OK;
}
@@ -552,7 +552,7 @@ bad_count:
pr_debug("APB CS going back %lx:%lx:%lx ",
t2, last_read, t2 - last_read);
bad_count_x3:
- pr_debug(KERN_INFO "tripple check enforced\n");
+ pr_debug("triple check enforced\n");
t0 = apbt_readl(phy_cs_timer_id,
APBTMR_N_CURRENT_VALUE);
udelay(1);
^ permalink raw reply related [flat|nested] 22+ messages in thread
* Re: [PATCH 03/11] arch/microblaze: Remove pr_<level> uses of KERN_<level>
2010-09-12 5:10 ` [PATCH 03/11] arch/microblaze: " Joe Perches
@ 2010-09-13 7:09 ` Michal Simek
0 siblings, 0 replies; 22+ messages in thread
From: Michal Simek @ 2010-09-13 7:09 UTC (permalink / raw)
To: Joe Perches; +Cc: Jiri Kosina, microblaze-uclinux, linux-kernel
Joe Perches wrote:
> Signed-off-by: Joe Perches <joe@perches.com>
Added to microblaze next branch.
Thanks,
Michal
> ---
> arch/microblaze/kernel/exceptions.c | 16 ++++++----------
> 1 files changed, 6 insertions(+), 10 deletions(-)
>
> diff --git a/arch/microblaze/kernel/exceptions.c b/arch/microblaze/kernel/exceptions.c
> index b98ee8d..7dd4d12 100644
> --- a/arch/microblaze/kernel/exceptions.c
> +++ b/arch/microblaze/kernel/exceptions.c
> @@ -86,8 +86,7 @@ asmlinkage void full_exception(struct pt_regs *regs, unsigned int type,
> switch (type & 0x1F) {
> case MICROBLAZE_ILL_OPCODE_EXCEPTION:
> if (user_mode(regs)) {
> - pr_debug(KERN_WARNING "Illegal opcode exception " \
> - "in user mode.\n");
> + pr_debug("Illegal opcode exception in user mode\n");
> _exception(SIGILL, regs, ILL_ILLOPC, addr);
> return;
> }
> @@ -97,8 +96,7 @@ asmlinkage void full_exception(struct pt_regs *regs, unsigned int type,
> break;
> case MICROBLAZE_IBUS_EXCEPTION:
> if (user_mode(regs)) {
> - pr_debug(KERN_WARNING "Instruction bus error " \
> - "exception in user mode.\n");
> + pr_debug("Instruction bus error exception in user mode\n");
> _exception(SIGBUS, regs, BUS_ADRERR, addr);
> return;
> }
> @@ -108,8 +106,7 @@ asmlinkage void full_exception(struct pt_regs *regs, unsigned int type,
> break;
> case MICROBLAZE_DBUS_EXCEPTION:
> if (user_mode(regs)) {
> - pr_debug(KERN_WARNING "Data bus error exception " \
> - "in user mode.\n");
> + pr_debug("Data bus error exception in user mode\n");
> _exception(SIGBUS, regs, BUS_ADRERR, addr);
> return;
> }
> @@ -119,8 +116,7 @@ asmlinkage void full_exception(struct pt_regs *regs, unsigned int type,
> break;
> case MICROBLAZE_DIV_ZERO_EXCEPTION:
> if (user_mode(regs)) {
> - pr_debug(KERN_WARNING "Divide by zero exception " \
> - "in user mode\n");
> + pr_debug("Divide by zero exception in user mode\n");
> _exception(SIGILL, regs, FPE_INTDIV, addr);
> return;
> }
> @@ -129,7 +125,7 @@ asmlinkage void full_exception(struct pt_regs *regs, unsigned int type,
> die("Divide by zero exception", regs, SIGBUS);
> break;
> case MICROBLAZE_FPU_EXCEPTION:
> - pr_debug(KERN_WARNING "FPU exception\n");
> + pr_debug("FPU exception\n");
> /* IEEE FP exception */
> /* I removed fsr variable and use code var for storing fsr */
> if (fsr & FSR_IO)
> @@ -147,7 +143,7 @@ asmlinkage void full_exception(struct pt_regs *regs, unsigned int type,
>
> #ifdef CONFIG_MMU
> case MICROBLAZE_PRIVILEGED_EXCEPTION:
> - pr_debug(KERN_WARNING "Privileged exception\n");
> + pr_debug("Privileged exception\n");
> /* "brk r0,r0" - used as debug breakpoint - old toolchain */
> if (get_user(code, (unsigned long *)regs->pc) == 0
> && code == 0x980c0000) {
--
Michal Simek, Ing. (M.Eng)
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel 2.6 Microblaze Linux - http://www.monstr.eu/fdt/
Microblaze U-BOOT custodian
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH 11/11] sound: Remove pr_<level> uses of KERN_<level>
2010-09-12 5:10 ` [PATCH 11/11] sound: " Joe Perches
@ 2010-09-13 8:25 ` Mark Brown
2010-09-13 17:55 ` Geoff Levand
2010-09-13 21:41 ` Takashi Iwai
2 siblings, 0 replies; 22+ messages in thread
From: Mark Brown @ 2010-09-13 8:25 UTC (permalink / raw)
To: Joe Perches
Cc: Jiri Kosina, Geoff Levand, Jaroslav Kysela, Takashi Iwai,
Liam Girdwood, linuxppc-dev, cbe-oss-dev, linux-kernel,
alsa-devel
On Sat, Sep 11, 2010 at 10:10:59PM -0700, Joe Perches wrote:
> Signed-off-by: Joe Perches <joe@perches.com>
> ---
> sound/ppc/snd_ps3.c | 2 +-
> sound/soc/s3c24xx/s3c-dma.c | 3 +--
> 2 files changed, 2 insertions(+), 3 deletions(-)
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH 11/11] sound: Remove pr_<level> uses of KERN_<level>
2010-09-12 5:10 ` [PATCH 11/11] sound: " Joe Perches
2010-09-13 8:25 ` Mark Brown
@ 2010-09-13 17:55 ` Geoff Levand
2010-09-13 21:41 ` Takashi Iwai
2 siblings, 0 replies; 22+ messages in thread
From: Geoff Levand @ 2010-09-13 17:55 UTC (permalink / raw)
To: Joe Perches
Cc: Jiri Kosina, Jaroslav Kysela, Takashi Iwai, Liam Girdwood,
Mark Brown, linuxppc-dev, cbe-oss-dev, linux-kernel, alsa-devel
[-- Attachment #1: Type: text/plain, Size: 662 bytes --]
Hi Joe,
On 09/11/2010 10:10 PM, Joe Perches wrote:
> sound/ppc/snd_ps3.c | 2 +-
>
> diff --git a/sound/ppc/snd_ps3.c b/sound/ppc/snd_ps3.c
> index 2f12da4..581a670 100644
> --- a/sound/ppc/snd_ps3.c
> +++ b/sound/ppc/snd_ps3.c
> @@ -579,7 +579,7 @@ static int snd_ps3_delay_to_bytes(struct snd_pcm_substream *substream,
> rate * delay_ms / 1000)
> * substream->runtime->channels;
>
> - pr_debug(KERN_ERR "%s: time=%d rate=%d bytes=%ld, frames=%d, ret=%d\n",
> + pr_debug("%s: time=%d rate=%d bytes=%ld, frames=%d, ret=%d\n",
> __func__,
> delay_ms,
> rate,
snd_ps3.c looks OK.
Acked-by: Geoff Levand <geoff@infradead.org>
[-- Attachment #2: 0x2E141B16.asc --]
[-- Type: application/pgp-keys, Size: 9418 bytes --]
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH 11/11] sound: Remove pr_<level> uses of KERN_<level>
2010-09-12 5:10 ` [PATCH 11/11] sound: " Joe Perches
2010-09-13 8:25 ` Mark Brown
2010-09-13 17:55 ` Geoff Levand
@ 2010-09-13 21:41 ` Takashi Iwai
2 siblings, 0 replies; 22+ messages in thread
From: Takashi Iwai @ 2010-09-13 21:41 UTC (permalink / raw)
To: Joe Perches
Cc: Jiri Kosina, Geoff Levand, Jaroslav Kysela, Liam Girdwood,
Mark Brown, linuxppc-dev, cbe-oss-dev, linux-kernel, alsa-devel
At Sat, 11 Sep 2010 22:10:59 -0700,
Joe Perches wrote:
>
> Signed-off-by: Joe Perches <joe@perches.com>
Applied to sound git tree now. Thanks.
Takashi
> ---
> sound/ppc/snd_ps3.c | 2 +-
> sound/soc/s3c24xx/s3c-dma.c | 3 +--
> 2 files changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/sound/ppc/snd_ps3.c b/sound/ppc/snd_ps3.c
> index 2f12da4..581a670 100644
> --- a/sound/ppc/snd_ps3.c
> +++ b/sound/ppc/snd_ps3.c
> @@ -579,7 +579,7 @@ static int snd_ps3_delay_to_bytes(struct snd_pcm_substream *substream,
> rate * delay_ms / 1000)
> * substream->runtime->channels;
>
> - pr_debug(KERN_ERR "%s: time=%d rate=%d bytes=%ld, frames=%d, ret=%d\n",
> + pr_debug("%s: time=%d rate=%d bytes=%ld, frames=%d, ret=%d\n",
> __func__,
> delay_ms,
> rate,
> diff --git a/sound/soc/s3c24xx/s3c-dma.c b/sound/soc/s3c24xx/s3c-dma.c
> index 1b61c23..f1b1bc4 100644
> --- a/sound/soc/s3c24xx/s3c-dma.c
> +++ b/sound/soc/s3c24xx/s3c-dma.c
> @@ -94,8 +94,7 @@ static void s3c_dma_enqueue(struct snd_pcm_substream *substream)
>
> if ((pos + len) > prtd->dma_end) {
> len = prtd->dma_end - pos;
> - pr_debug(KERN_DEBUG "%s: corrected dma len %ld\n",
> - __func__, len);
> + pr_debug("%s: corrected dma len %ld\n", __func__, len);
> }
>
> ret = s3c2410_dma_enqueue(prtd->params->channel,
> --
> 1.7.3.rc1
>
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH 08/11] drivers/net/skfp: Remove pr_<level> uses of KERN_<level>
2010-09-12 5:10 ` [PATCH 08/11] drivers/net/skfp: " Joe Perches
@ 2010-09-14 3:04 ` David Miller
0 siblings, 0 replies; 22+ messages in thread
From: David Miller @ 2010-09-14 3:04 UTC (permalink / raw)
To: joe; +Cc: trivial, netdev, linux-kernel
From: Joe Perches <joe@perches.com>
Date: Sat, 11 Sep 2010 22:10:56 -0700
> Signed-off-by: Joe Perches <joe@perches.com>
Applied.
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH 01/11] arch/arm: Remove pr_<level> uses of KERN_<level>
2010-09-12 5:10 ` [PATCH 01/11] arch/arm: Remove pr_<level> uses of KERN_<level> Joe Perches
@ 2010-09-14 7:37 ` Eric Miao
0 siblings, 0 replies; 22+ messages in thread
From: Eric Miao @ 2010-09-14 7:37 UTC (permalink / raw)
To: Joe Perches; +Cc: Jiri Kosina, Russell King, linux-arm-kernel, linux-kernel
On Sun, Sep 12, 2010 at 1:10 PM, Joe Perches <joe@perches.com> wrote:
> Signed-off-by: Joe Perches <joe@perches.com>
Applied to 'fix', with a little bit modification to the subject line to follow
ARM patch title conventions.
> ---
> arch/arm/mach-pxa/cpufreq-pxa2xx.c | 3 +--
> 1 files changed, 1 insertions(+), 2 deletions(-)
>
> diff --git a/arch/arm/mach-pxa/cpufreq-pxa2xx.c b/arch/arm/mach-pxa/cpufreq-pxa2xx.c
> index 50d5939..58093d9 100644
> --- a/arch/arm/mach-pxa/cpufreq-pxa2xx.c
> +++ b/arch/arm/mach-pxa/cpufreq-pxa2xx.c
> @@ -312,8 +312,7 @@ static int pxa_set_target(struct cpufreq_policy *policy,
> freqs.cpu = policy->cpu;
>
> if (freq_debug)
> - pr_debug(KERN_INFO "Changing CPU frequency to %d Mhz, "
> - "(SDRAM %d Mhz)\n",
> + pr_debug("Changing CPU frequency to %d Mhz, (SDRAM %d Mhz)\n",
> freqs.new / 1000, (pxa_freq_settings[idx].div2) ?
> (new_freq_mem / 2000) : (new_freq_mem / 1000));
>
> --
> 1.7.3.rc1
>
>
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH 04/11] arch/mips: Remove pr_<level> uses of KERN_<level>
2010-09-12 5:10 ` [PATCH 04/11] arch/mips: " Joe Perches
@ 2010-09-18 23:59 ` Ralf Baechle
0 siblings, 0 replies; 22+ messages in thread
From: Ralf Baechle @ 2010-09-18 23:59 UTC (permalink / raw)
To: Joe Perches, g; +Cc: Jiri Kosina, linux-mips, linux-kernel
Thanks, applied.
Ralf
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH 10/11] drivers/usb/gadget: Remove pr_<level> uses of KERN_<level>
2010-09-12 5:10 ` [PATCH 10/11] drivers/usb/gadget: " Joe Perches
@ 2010-09-21 16:11 ` Joe Perches
2010-09-21 20:35 ` Greg KH
0 siblings, 1 reply; 22+ messages in thread
From: Joe Perches @ 2010-09-21 16:11 UTC (permalink / raw)
To: Jiri Kosina; +Cc: David Brownell, Greg Kroah-Hartman, linux-usb, linux-kernel
On Sat, 2010-09-11 at 22:10 -0700, Joe Perches wrote:
> Signed-off-by: Joe Perches <joe@perches.com>
> ---
> drivers/usb/gadget/r8a66597-udc.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/usb/gadget/r8a66597-udc.c b/drivers/usb/gadget/r8a66597-udc.c
> index 2456ccd..8040c85 100644
> --- a/drivers/usb/gadget/r8a66597-udc.c
> +++ b/drivers/usb/gadget/r8a66597-udc.c
> @@ -274,7 +274,7 @@ static int pipe_buffer_setting(struct r8a66597 *r8a66597,
> }
>
> if (buf_bsize && ((bufnum + 16) >= R8A66597_MAX_BUFNUM)) {
> - pr_err(KERN_ERR "r8a66597 pipe memory is insufficient\n");
> + pr_err("r8a66597 pipe memory is insufficient\n");
> return -ENOMEM;
> }
>
Ping?
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH 10/11] drivers/usb/gadget: Remove pr_<level> uses of KERN_<level>
2010-09-21 16:11 ` Joe Perches
@ 2010-09-21 20:35 ` Greg KH
0 siblings, 0 replies; 22+ messages in thread
From: Greg KH @ 2010-09-21 20:35 UTC (permalink / raw)
To: Joe Perches
Cc: Jiri Kosina, David Brownell, Greg Kroah-Hartman, linux-usb,
linux-kernel
On Tue, Sep 21, 2010 at 09:11:34AM -0700, Joe Perches wrote:
> On Sat, 2010-09-11 at 22:10 -0700, Joe Perches wrote:
> > Signed-off-by: Joe Perches <joe@perches.com>
> > ---
> > drivers/usb/gadget/r8a66597-udc.c | 2 +-
> > 1 files changed, 1 insertions(+), 1 deletions(-)
> >
> > diff --git a/drivers/usb/gadget/r8a66597-udc.c b/drivers/usb/gadget/r8a66597-udc.c
> > index 2456ccd..8040c85 100644
> > --- a/drivers/usb/gadget/r8a66597-udc.c
> > +++ b/drivers/usb/gadget/r8a66597-udc.c
> > @@ -274,7 +274,7 @@ static int pipe_buffer_setting(struct r8a66597 *r8a66597,
> > }
> >
> > if (buf_bsize && ((bufnum + 16) >= R8A66597_MAX_BUFNUM)) {
> > - pr_err(KERN_ERR "r8a66597 pipe memory is insufficient\n");
> > + pr_err("r8a66597 pipe memory is insufficient\n");
> > return -ENOMEM;
> > }
> >
>
> Ping?
Sorry for the delay, now applied.
greg k-h
^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [PATCH 07/11] drivers/infiniband: Remove pr_<level> uses of KERN_<level>
2010-09-12 5:10 ` [PATCH 07/11] drivers/infiniband: " Joe Perches
@ 2010-09-29 3:51 ` Roland Dreier
0 siblings, 0 replies; 22+ messages in thread
From: Roland Dreier @ 2010-09-29 3:51 UTC (permalink / raw)
To: Joe Perches
Cc: Jiri Kosina, Tom Tucker, Steve Wise, Roland Dreier, Sean Hefty,
Hal Rosenstock, linux-rdma, linux-kernel
thanks, applied.
^ permalink raw reply [flat|nested] 22+ messages in thread
end of thread, other threads:[~2010-09-29 4:00 UTC | newest]
Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <cover.1284267142.git.joe@perches.com>
2010-09-12 5:10 ` [PATCH 01/11] arch/arm: Remove pr_<level> uses of KERN_<level> Joe Perches
2010-09-14 7:37 ` Eric Miao
2010-09-12 5:10 ` [PATCH 02/11] arch/avr32: " Joe Perches
2010-09-12 5:10 ` [PATCH 03/11] arch/microblaze: " Joe Perches
2010-09-13 7:09 ` Michal Simek
2010-09-12 5:10 ` [PATCH 04/11] arch/mips: " Joe Perches
2010-09-18 23:59 ` Ralf Baechle
2010-09-12 5:10 ` [PATCH 05/11] arch/powerpc: " Joe Perches
2010-09-12 5:10 ` [PATCH 06/11] arch/x86: " Joe Perches
2010-09-12 7:34 ` [tip:x86/debug] x86: " tip-bot for Joe Perches
2010-09-12 5:10 ` [PATCH 07/11] drivers/infiniband: " Joe Perches
2010-09-29 3:51 ` Roland Dreier
2010-09-12 5:10 ` [PATCH 08/11] drivers/net/skfp: " Joe Perches
2010-09-14 3:04 ` David Miller
2010-09-12 5:10 ` [PATCH 09/11] drivers/staging/msm: " Joe Perches
2010-09-12 5:10 ` [PATCH 10/11] drivers/usb/gadget: " Joe Perches
2010-09-21 16:11 ` Joe Perches
2010-09-21 20:35 ` Greg KH
2010-09-12 5:10 ` [PATCH 11/11] sound: " Joe Perches
2010-09-13 8:25 ` Mark Brown
2010-09-13 17:55 ` Geoff Levand
2010-09-13 21:41 ` Takashi Iwai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox