diff options
author | Sam Ravnborg <[email protected]> | 2020-04-08 20:29:26 +0200 |
---|---|---|
committer | Sam Ravnborg <[email protected]> | 2020-04-12 22:09:35 +0200 |
commit | feea1aab9217fc48078ed791ff0940d2e1eee4d2 (patch) | |
tree | 3417aeca1be18ccb0bd4ffe9a2e3f0be6a3cebcf | |
parent | dc2f7e67a28a5cbe4ea905dafaa6903df670014a (diff) |
fbdev: mx3fb: const pointer to ipu_di_signal_cfg
Laurent Pinchart <[email protected]> and
Jani Nikula <[email protected]> both
suggested to make the pointer to struct ipu_di_signal_cfg const.
Fix this.
Signed-off-by: Sam Ravnborg <[email protected]>
Fixes: 3f6c93ec9254 ("fbdev: mx3fb: avoid warning about psABI change")
Reviewed-by: Laurent Pinchart <[email protected]>
Cc: Jani Nikula <[email protected]>
Cc: Laurent Pinchart <[email protected]>
Cc: Arnd Bergmann <[email protected]>
Cc: Sam Ravnborg <[email protected]>
Cc: Enrico Weigelt <[email protected]>
Cc: Bartlomiej Zolnierkiewicz <[email protected]>
Cc: [email protected]
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
-rw-r--r-- | drivers/video/fbdev/mx3fb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/fbdev/mx3fb.c b/drivers/video/fbdev/mx3fb.c index e13fea3a292f..603731a5a72e 100644 --- a/drivers/video/fbdev/mx3fb.c +++ b/drivers/video/fbdev/mx3fb.c @@ -509,7 +509,7 @@ static int sdc_init_panel(struct mx3fb_data *mx3fb, enum ipu_panel panel, uint16_t h_start_width, uint16_t h_sync_width, uint16_t h_end_width, uint16_t v_start_width, uint16_t v_sync_width, uint16_t v_end_width, - struct ipu_di_signal_cfg *sig) + const struct ipu_di_signal_cfg *sig) { unsigned long lock_flags; uint32_t reg; |