From 4155850dd9283acfde4124c669042ed54c019631 Mon Sep 17 00:00:00 2001 From: Jaeden Amero Date: Fri, 26 Oct 2018 11:44:33 +0100 Subject: [PATCH] psa: driver: Use header guard style consistently The file crypto_driver.h was not using the header guard style as other PSA Crypto header files. Remove the `__` prefix and suffix. Use C-style comments for the end-of-guard comment. --- include/psa/crypto_driver.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/psa/crypto_driver.h b/include/psa/crypto_driver.h index 25cbf3ed4..006453151 100644 --- a/include/psa/crypto_driver.h +++ b/include/psa/crypto_driver.h @@ -25,8 +25,8 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#ifndef __PSA_CRYPTO_DRIVER_H__ -#define __PSA_CRYPTO_DRIVER_H__ +#ifndef PSA_CRYPTO_DRIVER_H +#define PSA_CRYPTO_DRIVER_H #include #include @@ -1776,4 +1776,4 @@ struct psa_drv_key_derivation_t { /**@}*/ -#endif // __PSA_CRYPTO_DRIVER_H__ +#endif /* PSA_CRYPTO_DRIVER_H */