Skip to content
Snippets Groups Projects
Commit caef80a8 authored by Jonas Höppner's avatar Jonas Höppner
Browse files

[CMD][SECO_CONFIG] Fix warning: assignment discards const qualifier

parent ca999d16
No related branches found
No related tags found
1 merge request!224[CMD][SECO_CONFIG] Fix accidental modification of environment variables
......@@ -928,7 +928,7 @@ int set_video_mode( int fdt_selected_device ) {
#endif /* CONFIG_OF_LIBFDT_OVERLAY */
int fw_num;
fw_t *firmware;
char *get_fw_video_list;
const char *get_fw_video_list;
char fw_video_list[256];
/* select video mode configuration */
......@@ -1296,7 +1296,7 @@ int set_touch_mode( int fdt_selected_device ) {
// char *peripheral_list_overlay;
int fw_num;
fw_t *firmware;
char *get_fw_video_list;
const char *get_fw_video_list;
char fw_video_list[256];
peripheral_overlay_selections = malloc( sizeof(int) * gd->boot_setup.overlay_peripheral_num );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment