Before I can get to work a feed repository that work i have included qca-nss source needed on this commit Source author: SqTER-PL <r.napierala@asta-net.pl>
12 lines
287 B
C
12 lines
287 B
C
#ifndef __NSS_FW_VERSION_H
|
|
#define __NSS_FW_VERSION_H
|
|
|
|
#define NSS_FW_VERSION_MAJOR 11
|
|
#define NSS_FW_VERSION_MINOR 4
|
|
|
|
#define NSS_FW_VERSION(a,b) (((a) << 8) + (b))
|
|
|
|
#define NSS_FW_VERSION_CODE NSS_FW_VERSION(NSS_FW_VERSION_MAJOR, NSS_FW_VERSION_MINOR)
|
|
|
|
#endif /* __NSS_FW_VERSION_H */
|