mtd: rawnand: brcmnand: fallback to detected ecc-strength, ecc-step-size
[linux/fpc-iii.git] / tools / build / feature / test-libopencsd.c
blob2b0e02c3887076aa674357bbbf7ca7c24e1e7bbf
1 // SPDX-License-Identifier: GPL-2.0
2 #include <opencsd/c_api/opencsd_c_api.h>
4 /*
5 * Check OpenCSD library version is sufficient to provide required features
6 */
7 #define OCSD_MIN_VER ((0 << 16) | (11 << 8) | (0))
8 #if !defined(OCSD_VER_NUM) || (OCSD_VER_NUM < OCSD_MIN_VER)
9 #error "OpenCSD >= 0.11.0 is required"
10 #endif
12 int main(void)
14 (void)ocsd_get_version();
15 return 0;