4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
21 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
22 * Use is subject to license terms.
25 #pragma ident "%Z%%M% %I% %E% SMI"
27 #include <mcamd_api.h>
28 #include <mcamd_err.h>
30 static const char *const _mcamd_errlist
[] = {
31 "Invalid syndrome", /* EMCAMD_SYNDINVALID */
32 "Invalid configuration tree", /* EMCAMD_TREEINVALID */
33 "Address not found", /* EMCAMD_NOADDR */
34 "Operation not supported", /* EMCAMD_NOTSUP */
35 "Too few valid address bits", /* EMCAMD_INSUFF_RES */
38 static const int _mcamd_nerr
= sizeof (_mcamd_errlist
) /
39 sizeof (_mcamd_errlist
[0]);
42 mcamd_set_errno_ptr(struct mcamd_hdl
*mcamd
, int err
)
44 (void) mcamd_set_errno(mcamd
, err
);
49 mcamd_strerror(int err
)
51 const char *str
= NULL
;
53 if (err
>= EMCAMD_BASE
&& (err
- EMCAMD_BASE
) < _mcamd_nerr
)
54 str
= _mcamd_errlist
[err
- EMCAMD_BASE
];
56 return (str
== NULL
? "Unknown error" : str
);
60 mcamd_errmsg(struct mcamd_hdl
*mcamd
)
62 return (mcamd_strerror(mcamd_errno(mcamd
)));