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