shithub: riscv

ref: 27bdfccc4095a289e1a9bfcc1e98f5cca9c0a9c3
dir: /sys/src/9/port/nandecc.h/

View raw version
typedef enum NandEccError {
	NandEccErrorBad,
	NandEccErrorGood,
	NandEccErrorOneBit,
	NandEccErrorOneBitInEcc,
} NandEccError;

ulong nandecc(uchar buf[256]);
NandEccError nandecccorrect(uchar buf[256], ulong calcecc, ulong *storedecc,
	int reportbad);