summaryrefslogtreecommitdiff
path: root/board/CZ.NIC
diff options
context:
space:
mode:
authorPali Rohár <pali@kernel.org>2022-04-08 17:30:15 +0300
committerStefan Roese <sr@denx.de>2022-04-21 13:31:36 +0300
commit08b99b67753a26ce142965151244261cdd73c490 (patch)
tree6968412ef813e84f323cf84fb10f9af65b3528c1 /board/CZ.NIC
parent98bbb6e7ab9b263a84c50a581c30089f9126c708 (diff)
downloadu-boot-08b99b67753a26ce142965151244261cdd73c490.tar.xz
board: turris: Rename atsha204a@64 DT node to crypto@64
DT node name should be generic, therefore rename atsha204a@64 to crypto@64. Signed-off-by: Pali Rohár <pali@kernel.org> Reviewed-by: Marek Behún <marek.behun@nic.cz>
Diffstat (limited to 'board/CZ.NIC')
-rw-r--r--board/CZ.NIC/turris_atsha_otp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/CZ.NIC/turris_atsha_otp.c b/board/CZ.NIC/turris_atsha_otp.c
index 7a39b7f61d..8c39f5e524 100644
--- a/board/CZ.NIC/turris_atsha_otp.c
+++ b/board/CZ.NIC/turris_atsha_otp.c
@@ -21,7 +21,7 @@ static struct udevice *get_atsha204a_dev(void)
/* Cannot be static because BSS does not have to be ready at this early stage */
struct udevice *dev;
- if (uclass_get_device_by_name(UCLASS_MISC, "atsha204a@64", &dev)) {
+ if (uclass_get_device_by_name(UCLASS_MISC, "crypto@64", &dev)) {
puts("Cannot find ATSHA204A on I2C bus!\n");
dev = NULL;
}