mirror of
https://github.com/xboot/xfel.git
synced 2024-11-27 11:43:28 +08:00
17 lines
278 B
C
17 lines
278 B
C
|
#include <spinor.h>
|
||
|
|
||
|
int spinor_detect(struct xfel_ctx_t * ctx)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
size_t spinor_read(struct xfel_ctx_t * ctx, uint32_t addr, void * buf, size_t len)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
size_t spinor_write(struct xfel_ctx_t * ctx, uint32_t addr, void * buf, size_t len)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|