vendorcode/cavium: Fix additions to string

The clang compiler is confused about adding integers to strings. Adding
brackets around the macros fixes this.

TEST: BUILD_TIMELESS=1 remains the same.

Change-Id: I2ea17322352d977bf0ec3ee71b14463fa218d07c
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/74541
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Arthur Heymans 2023-04-18 18:53:44 +02:00 committed by Lean Sheng Tan
parent 4ffce7e8ac
commit cef0e0ad6f
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ BDK_REQUIRE_DEFINE(QLM);
*/
const char *bdk_qlm_mode_to_cfg_str(bdk_qlm_modes_t mode)
{
#define MODE_CASE(m) case m: return #m+13
#define MODE_CASE(m) case (m): return (#m)+13
switch (mode)
{
MODE_CASE(BDK_QLM_MODE_DISABLED);