diff options
author | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2011-03-09 01:45:29 +0100 |
---|---|---|
committer | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2011-03-09 01:45:29 +0100 |
commit | 1f39476f289cd6ac1f45da7f0d9b528b4bc9a978 (patch) | |
tree | 295c7283a6e665afb01d882dba950d99ee31209b /error.h | |
parent | 7f97ea07417de4c2ea260e2860e589011c732e04 (diff) | |
download | pcitool-1f39476f289cd6ac1f45da7f0d9b528b4bc9a978.tar.gz pcitool-1f39476f289cd6ac1f45da7f0d9b528b4bc9a978.tar.bz2 pcitool-1f39476f289cd6ac1f45da7f0d9b528b4bc9a978.tar.xz pcitool-1f39476f289cd6ac1f45da7f0d9b528b4bc9a978.zip |
Better handling of register banks
Diffstat (limited to 'error.h')
-rw-r--r-- | error.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,12 +4,13 @@ enum { PCILIB_ERROR_SUCCESS = 0, PCILIB_ERROR_INVALID_ADDRESS, + PCILIB_ERROR_INVALID_BANK, PCILIB_ERROR_TIMEOUT, PCILIB_ERROR_FAILED, PCILIB_ERROR_VERIFY, PCILIB_ERROR_NOTSUPPORTED, PCILIB_ERROR_NOTFOUND, - PCILIB_ERROR_OUTOFRANGE + PCILIB_ERROR_OUTOFRANGE, } pcilib_errot_t; |