1
0
Fork 0

Staging: tidspbridge: Remove unnecessary white space before a quoted newline in dmm.c

This patch fixes the following checkpatch.pl warning in pmgr/dmm.c-
WARNING: unnecessary whitespace before a quoted newline

Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
hifive-unleashed-5.1
Rashika Kheria 2013-11-10 19:01:26 +05:30 committed by Greg Kroah-Hartman
parent e2a6d03f9c
commit 0431aa1b4e
1 changed files with 2 additions and 2 deletions

View File

@ -477,9 +477,9 @@ u32 dmm_mem_map_dump(struct dmm_object *dmm_mgr)
spin_unlock(&dmm_mgr->dmm_lock);
printk(KERN_INFO "Total DSP VA FREE memory = %d Mbytes\n",
freemem / (1024 * 1024));
printk(KERN_INFO "Total DSP VA USED memory= %d Mbytes \n",
printk(KERN_INFO "Total DSP VA USED memory= %d Mbytes\n",
(((table_size * PG_SIZE4K) - freemem)) / (1024 * 1024));
printk(KERN_INFO "DSP VA - Biggest FREE block = %d Mbytes \n\n",
printk(KERN_INFO "DSP VA - Biggest FREE block = %d Mbytes\n\n",
(bigsize * PG_SIZE4K / (1024 * 1024)));
return 0;