If we send a chassis code via PDC, PDC usually overwrites the
contents on the LCD display. Just call lcd_print() in this case
so that the LCD/LED driver prints the last string again.
Signed-off-by: Helge Deller <deller@gmx.de>
 #include <asm/processor.h>
 #include <asm/pdc.h>
 #include <asm/pdcpat.h>
+#include <asm/led.h>
 
 #define PDC_CHASSIS_VER        "0.05"
 
                } else retval = -1;
 #endif /* CONFIG_64BIT */
        }       /* if (pdc_chassis_enabled) */
+
+       /* if system has LCD display, update current string */
+       if (retval != -1 && IS_ENABLED(CONFIG_CHASSIS_LCD_LED))
+               lcd_print(NULL);
+
 #endif /* CONFIG_PDC_CHASSIS */
        return retval;
 }