psa: config: Add CAMELLIA to the list of possible CMAC ciphers

Camellia-CMAC is valid PSA configuration.

Signed-off-by: Ronald Cron <ronald.cron@arm.com>
diff --git a/library/check_crypto_config.h b/library/check_crypto_config.h
index 1521c0f..d7ad16a 100644
--- a/library/check_crypto_config.h
+++ b/library/check_crypto_config.h
@@ -36,6 +36,7 @@
 
 #if defined(PSA_WANT_ALG_CMAC) && \
     !( defined(PSA_WANT_KEY_TYPE_AES) || \
+       defined(PSA_WANT_KEY_TYPE_CAMELLIA) || \
        defined(PSA_WANT_KEY_TYPE_DES) )
 #error "PSA_WANT_ALG_CMAC defined, but not all prerequisites"
 #endif