Am Mittwoch, 26. Januar 2022, 13:15:04 CET schrieb kernel test robot: Hi, > crypto/drbg.c:204:30: warning: unused function 'drbg_sec_strength' > [-Wunused-function] static inline unsigned short > drbg_sec_strength(drbg_flag_t flags) ^ It is interesting that Sparse did not complain about this. Anyhow, this function is not needed and will be removed. > > >> crypto/drbg.c:1742:2: error: call to __compiletime_assert_223 declared > >> with 'error' attribute: BUILD_BUG_ON failed: ARRAY_SIZE(drbg_cores) != > >> ARRAY_SIZE(drbg_algs) > BUILD_BUG_ON(ARRAY_SIZE(drbg_cores) != ARRAY_SIZE(drbg_algs)); Correct, it should be > instead of != :-) This will be fixed in the new code base Thanks! Ciao Stephan