diff options
author | Alistair Popple <alistair@popple.id.au> | 2014-11-13 17:16:07 +1100 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2014-12-02 18:54:47 +1100 |
commit | 28a178751b4195e546e0e8d429f988793c18f848 (patch) | |
tree | 46841d8b1f50c8ccb227d89895c97198ef93050d /hw/fsp/fsp-mem-err.c | |
parent | e9ba0c924d6eed70cef4e41695196705759e60e6 (diff) | |
download | blackbird-skiboot-28a178751b4195e546e0e8d429f988793c18f848.tar.gz blackbird-skiboot-28a178751b4195e546e0e8d429f988793c18f848.zip |
elog: Clean up error logging headers
Commit cf6f4e8912d29fb89ce85c84834607065ad595a5 introduced a platform
independent frontend for error logging. However it failed to move the
generic parts of the fsp-elog.h header into the platform independent
one, instead relying on the fact that up until now fsp-elog.h was
included whenever a function needed to log errors.
This patch moves the platform independent defines into the frontend
header file (errorlog.h) and removes the include of the platform
specific header in generic code paths.
Signed-off-by: Alistair Popple <alistair@popple.id.au>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'hw/fsp/fsp-mem-err.c')
-rw-r--r-- | hw/fsp/fsp-mem-err.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/fsp/fsp-mem-err.c b/hw/fsp/fsp-mem-err.c index 5628734b..d73736b8 100644 --- a/hw/fsp/fsp-mem-err.c +++ b/hw/fsp/fsp-mem-err.c @@ -19,7 +19,7 @@ #include <opal-msg.h> #include <lock.h> #include <fsp.h> -#include <fsp-elog.h> +#include <errorlog.h> /* debug message prefix */ #define PREFIX "FSPMEMERR: " |