12 struct nvs_operations;
15 struct dhcp_option_block *options;
17 struct nvs_operations *op;
20 struct nvs_operations {
21 int ( * read ) ( struct nvs_device *nvs, unsigned int offset,
22 void *data, size_t len );
23 int ( * write ) ( struct nvs_device *nvs, unsigned int offset,
24 const void *data, size_t len );
27 extern int nvs_register ( struct nvs_device *nvs );
28 extern void nvs_unregister ( struct nvs_device *nvs );
30 #endif /* _GPXE_NVS_H */