mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-23 17:35:38 +01:00
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.
This commit is contained in:
parent
7632f628d7
commit
4155850dd9
@ -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 <stddef.h>
|
||||
#include <stdint.h>
|
||||
@ -1776,4 +1776,4 @@ struct psa_drv_key_derivation_t {
|
||||
|
||||
/**@}*/
|
||||
|
||||
#endif // __PSA_CRYPTO_DRIVER_H__
|
||||
#endif /* PSA_CRYPTO_DRIVER_H */
|
||||
|
Loading…
Reference in New Issue
Block a user