diff options
author | Stewart Smith <stewart@linux.vnet.ibm.com> | 2015-10-13 16:58:31 +1100 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2015-10-13 16:58:44 +1100 |
commit | b5d8248fb88fd6060f43483ba41cf5a1e66ea8a8 (patch) | |
tree | 8e2e0832759c60ea83271a96e1ed900d2b02ae8c /hw | |
parent | e91d12a94866d4232e51aa757b87e5bf0891e6d2 (diff) | |
download | skiboot-b5d8248fb88fd6060f43483ba41cf5a1e66ea8a8.zip skiboot-b5d8248fb88fd6060f43483ba41cf5a1e66ea8a8.tar.gz skiboot-b5d8248fb88fd6060f43483ba41cf5a1e66ea8a8.tar.bz2 |
fix prerror() build failure in fsp-leds.cskiboot-5.1.7
Fixes: 8f433d6cd4f92b4f878e5ddc414e2800a2fb7140
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/fsp/fsp-leds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/fsp/fsp-leds.c b/hw/fsp/fsp-leds.c index 8a3a0d8..4933dfa 100644 --- a/hw/fsp/fsp-leds.c +++ b/hw/fsp/fsp-leds.c @@ -1884,7 +1884,7 @@ void fsp_led_init(void) loc_code_list_buffer = memalign(TCE_PSIZE, PSI_DMA_LOC_COD_BUF_SZ); if (loc_code_list_buffer == NULL) - prerror(PREFIX "ERROR: Unable to allocate loc_code_list_buffer!\n"); + prerror("ERROR: Unable to allocate loc_code_list_buffer!\n"); prlog(PR_TRACE, "Init completed\n"); |