aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-powerpc/ps3.h
diff options
context:
space:
mode:
authorGeert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>2007-09-12 04:43:16 -0400
committerPaul Mackerras <paulus@samba.org>2007-09-13 11:33:25 -0400
commit06462d9263e168da3ecdff5a3d95ed470a91bbdc (patch)
treec634254075be923c2b9872fe3d8948ddd81ada59 /include/asm-powerpc/ps3.h
parent85d02924a38789be35e83adba32eb6690535cfb0 (diff)
[POWERPC] PS3: Add new LV1 error codes
Add new error codes that may be returned by the LV1 hypervisor Signed-off-by: Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com> Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-powerpc/ps3.h')
-rw-r--r--include/asm-powerpc/ps3.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/asm-powerpc/ps3.h b/include/asm-powerpc/ps3.h
index a6f3f5ee7ca7..f577a16c6728 100644
--- a/include/asm-powerpc/ps3.h
+++ b/include/asm-powerpc/ps3.h
@@ -229,6 +229,9 @@ enum lv1_result {
229 LV1_INVALID_CLASS_ID = -21, 229 LV1_INVALID_CLASS_ID = -21,
230 LV1_CONSTRAINT_NOT_SATISFIED = -22, 230 LV1_CONSTRAINT_NOT_SATISFIED = -22,
231 LV1_ALIGNMENT_ERROR = -23, 231 LV1_ALIGNMENT_ERROR = -23,
232 LV1_HARDWARE_ERROR = -24,
233 LV1_INVALID_DATA_FORMAT = -25,
234 LV1_INVALID_OPERATION = -26,
232 LV1_INTERNAL_ERROR = -32768, 235 LV1_INTERNAL_ERROR = -32768,
233}; 236};
234 237
@@ -284,6 +287,12 @@ static inline const char* ps3_result(int result)
284 return "LV1_CONSTRAINT_NOT_SATISFIED (-22)"; 287 return "LV1_CONSTRAINT_NOT_SATISFIED (-22)";
285 case LV1_ALIGNMENT_ERROR: 288 case LV1_ALIGNMENT_ERROR:
286 return "LV1_ALIGNMENT_ERROR (-23)"; 289 return "LV1_ALIGNMENT_ERROR (-23)";
290 case LV1_HARDWARE_ERROR:
291 return "LV1_HARDWARE_ERROR (-24)";
292 case LV1_INVALID_DATA_FORMAT:
293 return "LV1_INVALID_DATA_FORMAT (-25)";
294 case LV1_INVALID_OPERATION:
295 return "LV1_INVALID_OPERATION (-26)";
287 case LV1_INTERNAL_ERROR: 296 case LV1_INTERNAL_ERROR:
288 return "LV1_INTERNAL_ERROR (-32768)"; 297 return "LV1_INTERNAL_ERROR (-32768)";
289 default: 298 default: