Re: [PATCH 1/2] hw/s390x: Declare loadparm as char[LOADPARM_LEN]

2025-01-03 Thread Philippe Mathieu-Daudé
On 3/1/25 18:17, Thomas Huth wrote: On 30/12/2024 18.02, Philippe Mathieu-Daudé wrote: ping for this single cleanup patch? On 20/11/24 09:52, Philippe Mathieu-Daudé wrote: "hw/s390x/ipl/qipl.h" defines loadparm[] length as LOADPARM_LEN, use that instead of the magic '8' value. Use a char type

Re: [PATCH 1/2] hw/s390x: Declare loadparm as char[LOADPARM_LEN]

2025-01-03 Thread Thomas Huth
On 30/12/2024 18.02, Philippe Mathieu-Daudé wrote: ping for this single cleanup patch? On 20/11/24 09:52, Philippe Mathieu-Daudé wrote: "hw/s390x/ipl/qipl.h" defines loadparm[] length as LOADPARM_LEN, use that instead of the magic '8' value. Use a char type for char buffer. Signed-off-by: Phil

Re: [PATCH 1/2] hw/s390x: Declare loadparm as char[LOADPARM_LEN]

2024-12-30 Thread Philippe Mathieu-Daudé
ping for this single cleanup patch? On 20/11/24 09:52, Philippe Mathieu-Daudé wrote: "hw/s390x/ipl/qipl.h" defines loadparm[] length as LOADPARM_LEN, use that instead of the magic '8' value. Use a char type for char buffer. Signed-off-by: Philippe Mathieu-Daudé --- hw/s390x/ccw-device.h

[PATCH 1/2] hw/s390x: Declare loadparm as char[LOADPARM_LEN]

2024-11-20 Thread Philippe Mathieu-Daudé
"hw/s390x/ipl/qipl.h" defines loadparm[] length as LOADPARM_LEN, use that instead of the magic '8' value. Use a char type for char buffer. Signed-off-by: Philippe Mathieu-Daudé --- hw/s390x/ccw-device.h | 5 +++-- hw/s390x/ipl.h | 2 +- include/hw/qdev-properti