Subversion Repositories Kolibri OS

Rev

Rev 6588 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6588 Rev 7143
Line 3... Line 3...
3
 * Name: acexcep.h - Exception codes returned by the ACPI subsystem
3
 * Name: acexcep.h - Exception codes returned by the ACPI subsystem
4
 *
4
 *
5
 *****************************************************************************/
5
 *****************************************************************************/
Line 6... Line 6...
6
 
6
 
7
/*
7
/*
8
 * Copyright (C) 2000 - 2015, Intel Corp.
8
 * Copyright (C) 2000 - 2016, Intel Corp.
9
 * All rights reserved.
9
 * All rights reserved.
10
 *
10
 *
11
 * Redistribution and use in source and binary forms, with or without
11
 * Redistribution and use in source and binary forms, with or without
12
 * modification, are permitted provided that the following conditions
12
 * modification, are permitted provided that the following conditions
Line 124... Line 124...
124
#define AE_SAME_HANDLER                 EXCEP_ENV (0x0019)
124
#define AE_SAME_HANDLER                 EXCEP_ENV (0x0019)
125
#define AE_NO_HANDLER                   EXCEP_ENV (0x001A)
125
#define AE_NO_HANDLER                   EXCEP_ENV (0x001A)
126
#define AE_OWNER_ID_LIMIT               EXCEP_ENV (0x001B)
126
#define AE_OWNER_ID_LIMIT               EXCEP_ENV (0x001B)
127
#define AE_NOT_CONFIGURED               EXCEP_ENV (0x001C)
127
#define AE_NOT_CONFIGURED               EXCEP_ENV (0x001C)
128
#define AE_ACCESS                       EXCEP_ENV (0x001D)
128
#define AE_ACCESS                       EXCEP_ENV (0x001D)
-
 
129
#define AE_IO_ERROR                     EXCEP_ENV (0x001E)
Line 129... Line 130...
129
 
130
 
Line 130... Line 131...
130
#define AE_CODE_ENV_MAX                 0x001D
131
#define AE_CODE_ENV_MAX                 0x001E
131
 
132
 
132
/*
133
/*
133
 * Programmer exceptions
134
 * Programmer exceptions
Line 261... Line 262...
261
		  "A handler for the operation is not installed"),
262
		  "A handler for the operation is not installed"),
262
	EXCEP_TXT("AE_OWNER_ID_LIMIT",
263
	EXCEP_TXT("AE_OWNER_ID_LIMIT",
263
		  "There are no more Owner IDs available for ACPI tables or control methods"),
264
		  "There are no more Owner IDs available for ACPI tables or control methods"),
264
	EXCEP_TXT("AE_NOT_CONFIGURED",
265
	EXCEP_TXT("AE_NOT_CONFIGURED",
265
		  "The interface is not part of the current subsystem configuration"),
266
		  "The interface is not part of the current subsystem configuration"),
266
	EXCEP_TXT("AE_ACCESS", "Permission denied for the requested operation")
267
	EXCEP_TXT("AE_ACCESS", "Permission denied for the requested operation"),
-
 
268
	EXCEP_TXT("AE_IO_ERROR", "An I/O error occurred")
267
};
269
};
Line 268... Line 270...
268
 
270
 
269
static const struct acpi_exception_info acpi_gbl_exception_names_pgm[] = {
271
static const struct acpi_exception_info acpi_gbl_exception_names_pgm[] = {
270
	EXCEP_TXT(NULL, NULL),
272
	EXCEP_TXT(NULL, NULL),