[tip:sched/urgent] ia64, sched/cputime: Fix build error if CONFIG_VIRT_CPU_ACCOUNTING_NATIVE=y

2018-01-06 Thread tip-bot for Valentin Ilie
Commit-ID: 7729bebc619307a0233c86f8585a4bf3eadc7ce4 Gitweb: https://git.kernel.org/tip/7729bebc619307a0233c86f8585a4bf3eadc7ce4 Author: Valentin Ilie <valentin.i...@gmail.com> AuthorDate: Fri, 5 Jan 2018 23:12:59 + Committer: Ingo Molnar <mi...@kernel.org> CommitDate: Sat

[tip:sched/urgent] ia64, sched/cputime: Fix build error if CONFIG_VIRT_CPU_ACCOUNTING_NATIVE=y

2018-01-06 Thread tip-bot for Valentin Ilie
Commit-ID: 7729bebc619307a0233c86f8585a4bf3eadc7ce4 Gitweb: https://git.kernel.org/tip/7729bebc619307a0233c86f8585a4bf3eadc7ce4 Author: Valentin Ilie AuthorDate: Fri, 5 Jan 2018 23:12:59 + Committer: Ingo Molnar CommitDate: Sat, 6 Jan 2018 11:48:34 +0100 ia64, sched/cputime: Fix

[PATCH] ia64: Fix syntax error introduced by e2339a4caa5e

2018-01-05 Thread Valentin Ilie
Remove extra parentheses. Signed-off-by: Valentin Ilie <valentin.i...@gmail.com> --- arch/ia64/kernel/time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/ia64/kernel/time.c b/arch/ia64/kernel/time.c index c6ecb97..9025699 100644 --- a/arch/ia64/kernel/time.c

[PATCH] ia64: Fix syntax error introduced by e2339a4caa5e

2018-01-05 Thread Valentin Ilie
Remove extra parentheses. Signed-off-by: Valentin Ilie --- arch/ia64/kernel/time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/ia64/kernel/time.c b/arch/ia64/kernel/time.c index c6ecb97..9025699 100644 --- a/arch/ia64/kernel/time.c +++ b/arch/ia64/kernel/time.c

Re: [PATCH] mm/page_owner: Fix memory leak

2015-01-16 Thread Valentin Ilie
On 16 January 2015 at 17:30, Paul Bolle wrote: > Before you resend: what happens to the resources of a userspace program > when its main() returns? On top of that, I should have used free, not kfree. I will resend v2 .. Sorry for the mess -- Valentin -- To unsubscribe from this list: send the

[PATCH] mm/page_owner: Fix memory leak

2015-01-16 Thread Valentin Ilie
Call kfree on list2 after using it. Signed-off-by: Valentin Ilie --- tools/vm/page_owner_sort.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/vm/page_owner_sort.c b/tools/vm/page_owner_sort.c index 77147b4..92292d5 100644 --- a/tools/vm/page_owner_sort.c +++ b/tools/vm

[PATCH] mm/page_owner: Fix memory leak

2015-01-16 Thread Valentin Ilie
Call kfree on list2 after using it. Signed-off-by: Valentin Ilie valentin.i...@gmail.com --- tools/vm/page_owner_sort.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/vm/page_owner_sort.c b/tools/vm/page_owner_sort.c index 77147b4..92292d5 100644 --- a/tools/vm/page_owner_sort.c

Re: [PATCH] mm/page_owner: Fix memory leak

2015-01-16 Thread Valentin Ilie
On 16 January 2015 at 17:30, Paul Bolle pebo...@tiscali.nl wrote: Before you resend: what happens to the resources of a userspace program when its main() returns? On top of that, I should have used free, not kfree. I will resend v2 .. Sorry for the mess -- Valentin -- To unsubscribe from

[PATCH] connector - documentation: close opened file descriptor

2014-09-17 Thread Valentin Ilie
For the logging process, we use either a file or stdout. In the case of a file, we need to fix that by calling fclose at the right time. In the case we end up calling fclose to stdout, we will not impact the program because we do it at its very end. Signed-off-by: Valentin Ilie

[PATCH] connector - documentation: close opened file descriptor

2014-09-17 Thread Valentin Ilie
For the logging process, we use either a file or stdout. In the case of a file, we need to fix that by calling fclose at the right time. In the case we end up calling fclose to stdout, we will not impact the program because we do it at its very end. Signed-off-by: Valentin Ilie valentin.i

Re: [PATCH] clk: st: Fix memory leak

2014-05-21 Thread Valentin Ilie
> > Gabriel. > > Best Regards. > > > > On 05/06/2014 11:29 AM, Valentin Ilie wrote: >> >> On 22 April 2014 16:15, Valentin Ilie wrote: >>> >>> When it fails to allocate div, gate should be free'd before return >>> >>> Signed-of

Re: [PATCH] clk: st: Fix memory leak

2014-05-21 Thread Valentin Ilie
? Gabriel. Best Regards. On 05/06/2014 11:29 AM, Valentin Ilie wrote: On 22 April 2014 16:15, Valentin Ilie valentin.i...@gmail.com wrote: When it fails to allocate div, gate should be free'd before return Signed-off-by: Valentin Ilie valentin.i...@gmail.com --- drivers/clk/st

Re: [PATCH] clk: st: Fix memory leak

2014-05-06 Thread Valentin Ilie
On 22 April 2014 16:15, Valentin Ilie wrote: > When it fails to allocate div, gate should be free'd before return > > Signed-off-by: Valentin Ilie > --- > drivers/clk/st/clkgen-pll.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/drive

Re: [PATCH] clk: st: Fix memory leak

2014-05-06 Thread Valentin Ilie
On 22 April 2014 16:15, Valentin Ilie valentin.i...@gmail.com wrote: When it fails to allocate div, gate should be free'd before return Signed-off-by: Valentin Ilie valentin.i...@gmail.com --- drivers/clk/st/clkgen-pll.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git

[PATCH] clk: st: Fix memory leak

2014-04-22 Thread Valentin Ilie
When it fails to allocate div, gate should be free'd before return Signed-off-by: Valentin Ilie --- drivers/clk/st/clkgen-pll.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/clk/st/clkgen-pll.c b/drivers/clk/st/clkgen-pll.c index bca0a0b..a886702 100644

[PATCH] clk: st: Fix memory leak

2014-04-22 Thread Valentin Ilie
When it fails to allocate div, gate should be free'd before return Signed-off-by: Valentin Ilie valentin.i...@gmail.com --- drivers/clk/st/clkgen-pll.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/clk/st/clkgen-pll.c b/drivers/clk/st/clkgen-pll.c index bca0a0b

[PATCH] dma: edma: Fix memory leak

2013-10-24 Thread Valentin Ilie
When it fails to allocate a slot, edesc should be free'd before return; Signed-off-by: Valentin Ilie --- drivers/dma/edma.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/dma/edma.c b/drivers/dma/edma.c index 098a8da..79ebac6 100644 --- a/drivers/dma/edma.c +++ b/drivers/dma/edma.c

[PATCH] clk: sunxi: fix memory leaks

2013-10-24 Thread Valentin Ilie
When the if condition is true, "fixed" and "gate" should be free'd before return. Signed-off-by: Valentin Ilie --- drivers/clk/sunxi/clk-sunxi.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/drivers/clk/sunxi/clk-sunxi.c b/drivers/clk/sunxi/clk-s

[PATCH] clk: sunxi: fix memory leaks

2013-10-24 Thread Valentin Ilie
When the if condition is true, fixed and gate should be free'd before return. Signed-off-by: Valentin Ilie valentin.i...@gmail.com --- drivers/clk/sunxi/clk-sunxi.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/drivers/clk/sunxi/clk-sunxi.c b/drivers/clk/sunxi/clk

[PATCH] dma: edma: Fix memory leak

2013-10-24 Thread Valentin Ilie
When it fails to allocate a slot, edesc should be free'd before return; Signed-off-by: Valentin Ilie valentin.i...@gmail.com --- drivers/dma/edma.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/dma/edma.c b/drivers/dma/edma.c index 098a8da..79ebac6 100644 --- a/drivers/dma/edma.c

Re: [PATCH] ARM: mach-iop32x: iq31244: Replace if-then-else with a switch statement

2013-09-29 Thread Valentin Ilie
On 2 September 2013 18:23, Valentin Ilie wrote: > Convert a compound if-else blob to a switch statement. > > Signed-off-by: Valentin Ilie > --- > arch/arm/mach-iop32x/iq31244.c | 29 +++-- > 1 file changed, 11 insertions(+), 18 deletions(-) > > di

Re: [PATCH] ARM: mach-iop32x: iq31244: Replace if-then-else with a switch statement

2013-09-29 Thread Valentin Ilie
On 2 September 2013 18:23, Valentin Ilie valentin.i...@gmail.com wrote: Convert a compound if-else blob to a switch statement. Signed-off-by: Valentin Ilie valentin.i...@gmail.com --- arch/arm/mach-iop32x/iq31244.c | 29 +++-- 1 file changed, 11 insertions(+), 18

Re: [PATCH] usb: gadget: mv_u3d_core: fix memory leaks

2013-09-26 Thread Valentin Ilie
On 21 September 2013 12:30, Valentin Ilie wrote: > When trb_hw is NULL, trb should be free'd before return. > > Signed-off-by: Valentin Ilie > --- > drivers/usb/gadget/mv_u3d_core.c |2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/usb/gadget/mv_u3d

Re: [PATCH] usb: gadget: mv_u3d_core: fix memory leaks

2013-09-26 Thread Valentin Ilie
On 21 September 2013 12:30, Valentin Ilie valentin.i...@gmail.com wrote: When trb_hw is NULL, trb should be free'd before return. Signed-off-by: Valentin Ilie valentin.i...@gmail.com --- drivers/usb/gadget/mv_u3d_core.c |2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/usb

[PATCH] usb: gadget: mv_u3d_core: fix memory leaks

2013-09-21 Thread Valentin Ilie
When trb_hw is NULL, trb should be free'd before return. Signed-off-by: Valentin Ilie --- drivers/usb/gadget/mv_u3d_core.c |2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/usb/gadget/mv_u3d_core.c b/drivers/usb/gadget/mv_u3d_core.c index 561b30e..4d31177 100644 --- a/drivers/usb

[PATCH] usb: gadget: mv_u3d_core: fix memory leaks

2013-09-21 Thread Valentin Ilie
When trb_hw is NULL, trb should be free'd before return. Signed-off-by: Valentin Ilie valentin.i...@gmail.com --- drivers/usb/gadget/mv_u3d_core.c |2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/usb/gadget/mv_u3d_core.c b/drivers/usb/gadget/mv_u3d_core.c index 561b30e..4d31177

Null pointer deference in drivers/power/pm2301_charger.c

2013-09-20 Thread Valentin Ilie
Hello, I am trying to solve a NULL pointer deference in drivers/power/pm2301_charger.c (and to submit a trivial patch) but I am not sure how to do it. Line 958 - 961 pm2 = (struct pm2xxx_charger*)i2c_get_clientdata(pm2xxx_i2c_client); if (!pm2) { dev_err(pm2->dev, "no

Null pointer deference in drivers/power/pm2301_charger.c

2013-09-20 Thread Valentin Ilie
Hello, I am trying to solve a NULL pointer deference in drivers/power/pm2301_charger.c (and to submit a trivial patch) but I am not sure how to do it. Line 958 - 961 pm2 = (struct pm2xxx_charger*)i2c_get_clientdata(pm2xxx_i2c_client); if (!pm2) { dev_err(pm2-dev, no

[PATCH] ASoC: blackfin: Add missing break statement to bf6xx

2013-09-13 Thread Valentin Ilie
SNDRV_PCM_FORMAT_S8 isn't supposed to fall through to SNDRV_PCM_FORMAT_S16_LE Signed-off-by: Valentin Ilie --- sound/soc/blackfin/bf6xx-i2s.c |1 + 1 file changed, 1 insertion(+) diff --git a/sound/soc/blackfin/bf6xx-i2s.c b/sound/soc/blackfin/bf6xx-i2s.c index c02405c..5810a06 100644

[PATCH] ASoC: blackfin: Add missing break statement to bf6xx

2013-09-13 Thread Valentin Ilie
SNDRV_PCM_FORMAT_S8 isn't supposed to fall through to SNDRV_PCM_FORMAT_S16_LE Signed-off-by: Valentin Ilie valentin.i...@gmail.com --- sound/soc/blackfin/bf6xx-i2s.c |1 + 1 file changed, 1 insertion(+) diff --git a/sound/soc/blackfin/bf6xx-i2s.c b/sound/soc/blackfin/bf6xx-i2s.c index

[PATCH] ARM: mach-iop32x: iq31244: Replace if-then-else with a switch statement

2013-09-02 Thread Valentin Ilie
Convert a compound if-else blob to a switch statement. Signed-off-by: Valentin Ilie --- arch/arm/mach-iop32x/iq31244.c | 29 +++-- 1 file changed, 11 insertions(+), 18 deletions(-) diff --git a/arch/arm/mach-iop32x/iq31244.c b/arch/arm/mach-iop32x/iq31244.c index

[PATCH] ARM: mach-iop32x: iq31244: Replace if-then-else with a switch statement

2013-09-02 Thread Valentin Ilie
Convert a compound if-else blob to a switch statement. Signed-off-by: Valentin Ilie valentin.i...@gmail.com --- arch/arm/mach-iop32x/iq31244.c | 29 +++-- 1 file changed, 11 insertions(+), 18 deletions(-) diff --git a/arch/arm/mach-iop32x/iq31244.c b/arch/arm/mach-iop32x

[PATCH] NFC: mei_phy: Clean up file

2013-06-07 Thread Valentin Ilie
Fix checkpatch warnings. Replace __attribute__((__packed__)) with __packed. Replace spaces with tabs. Signed-off-by: Valentin Ilie --- drivers/nfc/mei_phy.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/nfc/mei_phy.c b/drivers/nfc/mei_phy.c index 1201bdb

[PATCH] NFC: mei_phy: Clean up file

2013-06-07 Thread Valentin Ilie
Fix checkpatch warnings. Replace __attribute__((__packed__)) with __packed. Replace spaces with tabs. Signed-off-by: Valentin Ilie valentin.i...@gmail.com --- drivers/nfc/mei_phy.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/nfc/mei_phy.c b/drivers/nfc

[PATCH] crypto: proc - Clean up

2013-04-09 Thread Valentin Ilie
Remove trailing whitespaces Replace seq_puts with seq_printf when there are no extra parameters. Fix indentation problems Signed-off-by: Valentin Ilie --- crypto/proc.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/crypto/proc.c b/crypto/proc.c index

[PATCH] crypto: proc - Clean up

2013-04-09 Thread Valentin Ilie
Remove trailing whitespaces Replace seq_puts with seq_printf when there are no extra parameters. Fix indentation problems Signed-off-by: Valentin Ilie valentin.i...@gmail.com --- crypto/proc.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/crypto/proc.c b

[PATCH] staging/fwserial: Replace seq_printf with seq_puts

2013-04-08 Thread Valentin Ilie
Fix checkpatch warning about seq_printf. Signed-off-by: Valentin Ilie --- drivers/staging/fwserial/fwserial.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/fwserial/fwserial.c b/drivers/staging/fwserial/fwserial.c index 5c64e3a..e5818a1 100644

[PATCH] staging/fwserial: Replace seq_printf with seq_puts

2013-04-08 Thread Valentin Ilie
Fix checkpatch warning about seq_printf. Signed-off-by: Valentin Ilie valentin.i...@gmail.com --- drivers/staging/fwserial/fwserial.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/fwserial/fwserial.c b/drivers/staging/fwserial/fwserial.c index

[PATCH] staging: speakup: selection.c fix typo in comment

2013-04-05 Thread Valentin Ilie
Replace disallocated with deallocated Signed-off-by: Valentin Ilie --- drivers/staging/speakup/selection.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/speakup/selection.c b/drivers/staging/speakup/selection.c index 775af26..f0fb003 100644

[PATCH] staging: speakup: selection.c fix typo in comment

2013-04-05 Thread Valentin Ilie
Replace disallocated with deallocated Signed-off-by: Valentin Ilie valentin.i...@gmail.com --- drivers/staging/speakup/selection.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/speakup/selection.c b/drivers/staging/speakup/selection.c index 775af26

[PATCH] Arch: x86: kernel: smpboot.c: Remove unused variable

2013-03-11 Thread Valentin Ilie
Remove unused variable 'c' Signed-off-by: Valentin Ilie --- arch/x86/kernel/smpboot.c |1 - 1 file changed, 1 deletion(-) diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c index a6ceaed..7bc998a 100644 --- a/arch/x86/kernel/smpboot.c +++ b/arch/x86/kernel/smpboot.c

[PATCH] Arch: x86: kernel: smpboot.c: Remove unused variable

2013-03-11 Thread Valentin Ilie
Remove unused variable 'c' Signed-off-by: Valentin Ilie valentin.i...@gmail.com --- arch/x86/kernel/smpboot.c |1 - 1 file changed, 1 deletion(-) diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c index a6ceaed..7bc998a 100644 --- a/arch/x86/kernel/smpboot.c +++ b/arch/x86

[PATCHv2] net: can: af_can.c: Fix checkpatch warnings

2013-03-10 Thread Valentin Ilie
Replace printk(KERN_ERR with pr_err Add space before { Removed OOM messages Signed-off-by: Valentin Ilie --- net/can/af_can.c | 21 - 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/net/can/af_can.c b/net/can/af_can.c index c48e522..8bacf28 100644 --- a/net

[PATCH] net: can: af_can.c: Fix checkpatch warnings

2013-03-10 Thread Valentin Ilie
Replace printk(KERN_ERR with pr_err Add space before { Signed-off-by: Valentin Ilie --- net/can/af_can.c | 15 +++ 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/net/can/af_can.c b/net/can/af_can.c index c48e522..a14c0aa 100644 --- a/net/can/af_can.c +++ b/net/can

[PATCH] net: can: af_can.c: Fix checkpatch warnings

2013-03-10 Thread Valentin Ilie
Replace printk(KERN_ERR with pr_err Add space before { Signed-off-by: Valentin Ilie valentin.i...@gmail.com --- net/can/af_can.c | 15 +++ 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/net/can/af_can.c b/net/can/af_can.c index c48e522..a14c0aa 100644 --- a/net/can

[PATCHv2] net: can: af_can.c: Fix checkpatch warnings

2013-03-10 Thread Valentin Ilie
Replace printk(KERN_ERR with pr_err Add space before { Removed OOM messages Signed-off-by: Valentin Ilie valentin.i...@gmail.com --- net/can/af_can.c | 21 - 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/net/can/af_can.c b/net/can/af_can.c index c48e522

[PATCH] amba: bus: Fix checkpatch warnings

2013-03-08 Thread Valentin Ilie
Fixed the following checkpatch warnings: - ERROR: space required after that ','. - WARNING: EXPORT_SYMBOL(foo); should immediately follow its function/variable Signed-off-by: Valentin Ilie --- drivers/amba/bus.c | 21 + 1 file changed, 9 insertions(+), 12 deletions

[PATCH] amba: bus: Fix checkpatch warnings

2013-03-08 Thread Valentin Ilie
Fixed the following checkpatch warnings: - ERROR: space required after that ','. - WARNING: EXPORT_SYMBOL(foo); should immediately follow its function/variable Signed-off-by: Valentin Ilie valentin.i...@gmail.com --- drivers/amba/bus.c | 21 + 1 file changed, 9 insertions

[PATCH] kernel: panic.c

2012-11-04 Thread Valentin Ilie
Fixed checkpatch warnings. Replaced printk(KERN_WARNING with pr_warn Signed-off-by: Valentin Ilie --- kernel/panic.c | 17 - 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/kernel/panic.c b/kernel/panic.c index e1b2822..8f1709f 100644 --- a/kernel/panic.c +++ b

[PATCH] kernel: panic.c

2012-11-04 Thread Valentin Ilie
Fixed checkpatch warnings. Replaced printk(KERN_WARNING with pr_warn Signed-off-by: Valentin Ilie valentin.i...@gmail.com --- kernel/panic.c | 17 - 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/kernel/panic.c b/kernel/panic.c index e1b2822..8f1709f 100644

[PATCH] kernel: workqueue.c: fixed checkpatch issues

2012-08-18 Thread valentin . ilie
From: valentin Fixed some checkpatch warnings. Signed-off-by: Valentin Ilie --- kernel/workqueue.c | 27 +-- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/kernel/workqueue.c b/kernel/workqueue.c index 692d976..c4d57c8 100644 --- a/kernel/workqueue.c

[PATCH] kernel: workqueue.c: fixed checkpatch issues

2012-08-18 Thread valentin . ilie
From: valentin valentin.i...@gmail.com Fixed some checkpatch warnings. Signed-off-by: Valentin Ilie valentin.i...@gmail.com --- kernel/workqueue.c | 27 +-- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/kernel/workqueue.c b/kernel/workqueue.c index

Kernel: panic.c: fixed checkpatch warnings

2012-07-08 Thread Valentin Ilie
Replaced printk(KERN_WARNING.. with pr_warn.. Signed-off-by: Valentin Ilie --- kernel/panic.c | 18 -- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/kernel/panic.c b/kernel/panic.c index d2a5f4e..be76bc4 100644 --- a/kernel/panic.c +++ b/kernel/panic.c

[PATCH] Kernel: dma.c: fixed coding style issues

2012-07-08 Thread Valentin Ilie
Fixed coding style issues. (checkpatch warnings) Signed-off-by: Valentin Ilie --- kernel/dma.c | 17 - 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/kernel/dma.c b/kernel/dma.c index 6c6262f..082cd74 100644 --- a/kernel/dma.c +++ b/kernel/dma.c @@ -38,6 +38,7

[PATCH] Kernel: dma.c: fixed coding style issues

2012-07-08 Thread Valentin Ilie
Fixed coding style issues. (checkpatch warnings) Signed-off-by: Valentin Ilie valentin.i...@gmail.com --- kernel/dma.c | 17 - 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/kernel/dma.c b/kernel/dma.c index 6c6262f..082cd74 100644 --- a/kernel/dma.c +++ b/kernel

Kernel: panic.c: fixed checkpatch warnings

2012-07-08 Thread Valentin Ilie
Replaced printk(KERN_WARNING.. with pr_warn.. Signed-off-by: Valentin Ilie valentin.i...@gmail.com --- kernel/panic.c | 18 -- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/kernel/panic.c b/kernel/panic.c index d2a5f4e..be76bc4 100644 --- a/kernel/panic.c +++ b