diff options
author | Matthias Vogelgesang <matthias.vogelgesang@ipe.fzk.de> | 2011-03-09 17:34:23 +0100 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@ipe.fzk.de> | 2011-03-09 17:34:23 +0100 |
commit | b26046f5a83a3933a99166762de03bf8e7a48d76 (patch) | |
tree | 5f43a328cd43745ff3f2db4d864b2db4b81c35fd /default.h | |
parent | 8a33c993a5771b041b67c365378ac40f76365da7 (diff) | |
parent | 134e2cc87d524bbb63c2e73dc1bb1fd8c0449ae1 (diff) | |
download | pcitool-b26046f5a83a3933a99166762de03bf8e7a48d76.tar.gz pcitool-b26046f5a83a3933a99166762de03bf8e7a48d76.tar.bz2 pcitool-b26046f5a83a3933a99166762de03bf8e7a48d76.tar.xz pcitool-b26046f5a83a3933a99166762de03bf8e7a48d76.zip |
Merge changes
Diffstat (limited to 'default.h')
-rw-r--r-- | default.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/default.h b/default.h new file mode 100644 index 0000000..927921b --- /dev/null +++ b/default.h @@ -0,0 +1,9 @@ +#ifndef _PCILIB_DEFAULT_H +#define _PCILIB_DEFAULT_H + +#include "pcilib.h" + +int pcilib_default_read(pcilib_t *ctx, pcilib_register_bank_description_t *bank, pcilib_register_addr_t addr, uint8_t bits, pcilib_register_value_t *value); +int pcilib_default_write(pcilib_t *ctx, pcilib_register_bank_description_t *bank, pcilib_register_addr_t addr, uint8_t bits, pcilib_register_value_t value); + +#endif /* _PCILIB_DEFAULT_H */ |