nvram_test.h
406 Bytes
/*************************************************************************
*
* File: nvram_test.h
*
* This file contains definitions for all nvram tests
*
*/
#ifndef _NVRAM_TEST_H_
#define _NVRAM_TEST_H_
#define PASS 0
#define FAIL -1
/*
* Tests take no parameters and return 0 for PASS, -1 for FAIL
*/
int nms_store_test(int sysclk_scale, int ctrl_reg, int size, int test_num);
#endif