Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

staging: fbtft: Make framebuffer registration message debug-only

The framebuffer registration message is informational only and not
useful during normal operation. Convert it to debug-level logging to
keep the driver quiet when working correctly.

Suggested-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@intel.com>
Signed-off-by: Chintan Patel <chintanlike@gmail.com>
Signed-off-by: Helge Deller <deller@gmx.de>

authored by

Chintan Patel and committed by
Helge Deller
c595c196 be26a07c

+5 -5
+5 -5
drivers/staging/fbtft/fbtft-core.c
··· 792 792 if (spi) 793 793 sprintf(text2, ", spi%d.%d at %d MHz", spi->controller->bus_num, 794 794 spi_get_chipselect(spi, 0), spi->max_speed_hz / 1000000); 795 - fb_info(fb_info, 796 - "%s frame buffer, %dx%d, %d KiB video memory%s, fps=%lu%s\n", 797 - fb_info->fix.id, fb_info->var.xres, fb_info->var.yres, 798 - fb_info->fix.smem_len >> 10, text1, 799 - HZ / fb_info->fbdefio->delay, text2); 795 + fb_dbg(fb_info, 796 + "%s frame buffer, %dx%d, %d KiB video memory%s, fps=%lu%s\n", 797 + fb_info->fix.id, fb_info->var.xres, fb_info->var.yres, 798 + fb_info->fix.smem_len >> 10, text1, 799 + HZ / fb_info->fbdefio->delay, text2); 800 800 801 801 /* Turn on backlight if available */ 802 802 if (fb_info->bl_dev) {