Commit 7bea36ba authored by Lucas Russo's avatar Lucas Russo

hal/sm_io/sm_io_err.*: add new "config defaults" error

parent a59dbb68
......@@ -19,7 +19,8 @@ static const char *smio_err [SMIO_ERR_END] =
[SMIO_ERR_WRONG_NARGS] = "Wrong number of arguments",
[SMIO_ERR_WRONG_PARAM] = "Wrong parameter value",
[SMIO_ERR_LLIO] = "Low-level I/O could not complete operation",
[SMIO_ERR_EXPORT_OP] = "Could not export function"
[SMIO_ERR_EXPORT_OP] = "Could not export function",
[SMIO_ERR_CONFIG_DFLT] = "Could not configure the default values"
};
/* Convert enumeration type to string */
......
......@@ -21,6 +21,7 @@ enum _smio_err_e
SMIO_ERR_WRONG_PARAM, /* Wrong parameter value */
SMIO_ERR_LLIO, /* Low-level I/O could not complete operation */
SMIO_ERR_EXPORT_OP, /* Error exporting function */
SMIO_ERR_CONFIG_DFLT, /* Error configuring the default values */
SMIO_ERR_END /* End of enum marker */
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment