Lines Matching full:version
11 * MAJOR.MINOR.PATCH version number. See https://semver.org/
13 * Rules for incrementing or changing version :-
15 * 1) Increment MAJOR version if you make incompatible API changes. MINOR and
18 * 2) Increment MINOR version if you add backwards compatible features or
21 * 3) Increment PATCH version if you add backwards compatible bug fixes.
29 /* SOF ABI version major, minor and patch numbers */
34 /* SOF ABI version number. Format within 32bit word is MMmmmppp */
47 #define SOF_ABI_VERSION_MAJOR(version) \ argument
48 (((version) >> SOF_ABI_MAJOR_SHIFT) & SOF_ABI_MAJOR_MASK)
49 #define SOF_ABI_VERSION_MINOR(version) \ argument
50 (((version) >> SOF_ABI_MINOR_SHIFT) & SOF_ABI_MINOR_MASK)
51 #define SOF_ABI_VERSION_PATCH(version) \ argument
52 (((version) >> SOF_ABI_PATCH_SHIFT) & SOF_ABI_PATCH_MASK)