staging: fbtft: Constify buf parameter in fbtft_dbg_hex()
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Wed, 16 Mar 2022 16:53:50 +0000 (18:53 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 18 Mar 2022 12:42:48 +0000 (13:42 +0100)
It's obvious that we don't and shouldn't modify buffer that
is about to be dumped. Constify parameter in fbtft_dbg_hex()
to make it clear.

Fixes: c296d5f9957c ("staging: fbtft: core support")
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20220316165351.58107-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/fbtft/fbtft-core.c
drivers/staging/fbtft/fbtft.h

index f2684d2d68516cc0296f337a1e8ec2a1cecd7865..6dc77895a87cf6637a0f74768069b18423a28945 100644 (file)
@@ -49,7 +49,7 @@ int fbtft_write_buf_dc(struct fbtft_par *par, void *buf, size_t len, int dc)
 EXPORT_SYMBOL(fbtft_write_buf_dc);
 
 void fbtft_dbg_hex(const struct device *dev, int groupsize,
-                  void *buf, size_t len, const char *fmt, ...)
+                  const void *buf, size_t len, const char *fmt, ...)
 {
        va_list args;
        static char textbuf[512];
index 6a7545b5bcd2d4509f3df068114952d89faeb4b8..473523dea838d6f32454355ab408285e656472bb 100644 (file)
@@ -240,7 +240,7 @@ struct fbtft_par {
 int fbtft_write_buf_dc(struct fbtft_par *par, void *buf, size_t len, int dc);
 __printf(5, 6)
 void fbtft_dbg_hex(const struct device *dev, int groupsize,
-                  void *buf, size_t len, const char *fmt, ...);
+                  const void *buf, size_t len, const char *fmt, ...);
 struct fb_info *fbtft_framebuffer_alloc(struct fbtft_display *display,
                                        struct device *dev,
                                        struct fbtft_platform_data *pdata);