blob: b81ae12d3a9344a29893e8699b279cc070e70e0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _PCILIB_REGISTER_H
#define _PCILIB_REGISTER_H
#include "pcilib.h"
struct pcilib_protocol_description_s {
int (*read)(pcilib_t *ctx, pcilib_register_bank_description_t *bank, pcilib_register_addr_t addr, pcilib_register_value_t *value);
int (*write)(pcilib_t *ctx, pcilib_register_bank_description_t *bank, pcilib_register_addr_t addr, pcilib_register_value_t value);
};
// we don't copy strings, they should be statically allocated
int pcilib_add_registers(pcilib_t *ctx, size_t n, pcilib_register_description_t *registers);
#endif /* _PCILIB_REGISTER_H */
|