From 82a6c40bc4d294341ca1f613094d378b413fd049 Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Sat, 11 Mar 2017 15:28:47 +0100 Subject: [PATCH] - cs_api.h: add missing cs_get_chip_type() dummy --- include/cs_api.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/cs_api.h b/include/cs_api.h index 292430d..47890e0 100644 --- a/include/cs_api.h +++ b/include/cs_api.h @@ -62,5 +62,6 @@ unsigned long long cs_get_serial(void); #endif /* compat... HD1 seems to be version 6. everything newer ist > 6... */ static inline unsigned int cs_get_revision(void) { return 1; }; +static inline unsigned int cs_get_chip_type(void) { return 0; }; extern int cnxt_debug; #endif //__CS_API_H_