> Same comments as with other patches, not possible, IMO. Plus this patch > looks actually worse - commit msg is hardly readable. > > Best regards, > Krzysztof Hi Krzysztof, Thank you for your feedback. Let me briefly re-explain the change: The issue: When building with W=1, we get a format-overflow warning because "clk_uart_baud%d" could write 15-17 bytes (14 chars + 1-3 digits) into a 15-byte buffer. The fix: Increased clkname buffer size from 15 to 18 chars (original 14 chars + 3 digits + null = 18) Replaced sprintf() with snprintf() for safety This keeps the pattern consistent while eliminating the warning. Tested with CONFIG_SERIAL_SAMSUNG=y builds. Would you prefer any adjustments to this approach? Best regards