Use unsigned int for bitfields

uintN_t is not a standard type for a bitfield, as armcc points out.
diff --git a/include/psa/crypto_struct.h b/include/psa/crypto_struct.h
index 2414ad5..6eed259 100644
--- a/include/psa/crypto_struct.h
+++ b/include/psa/crypto_struct.h
@@ -186,8 +186,8 @@
 #endif
     uint8_t offset_in_block;
     uint8_t block_number;
-    uint8_t state : 2;
-    uint8_t info_set : 1;
+    unsigned int state : 2;
+    unsigned int info_set : 1;
 } psa_hkdf_generator_t;
 #endif /* MBEDTLS_MD_C */