Skip to content

Commit b1f5efc

Browse files
author
Andrzej Kurek
committed
Change zeros to NULL pointers for structures
1 parent d01bb5d commit b1f5efc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

atecc608a_se.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -441,10 +441,10 @@ static psa_drv_se_key_management_t atecc608a_key_management = {
441441

442442
psa_drv_se_t atecc608a_drv_info = {
443443
.key_management = &atecc608a_key_management,
444-
.mac = 0,
445-
.cipher = 0,
444+
.mac = NULL,
445+
.cipher = NULL,
446446
.asymmetric = &atecc608a_asymmetric,
447-
.aead = 0,
448-
.derivation = 0,
447+
.aead = NULL,
448+
.derivation = NULL,
449449
.hal_version = PSA_DRV_SE_HAL_VERSION
450450
};

0 commit comments

Comments
 (0)