]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
misc: atsha204a: fix sleep function
authorMichał Barnaś <barnas@google.com>
Mon, 19 Feb 2024 16:32:03 +0000 (16:32 +0000)
committerTom Rini <trini@konsulko.com>
Tue, 5 Mar 2024 13:08:26 +0000 (08:08 -0500)
Fix the sleep function to issue the sleep command instead of idle one.

Signed-off-by: Michał Barnaś <barnas@google.com>
drivers/misc/atsha204a-i2c.c

index ab83bbc3e95cb3d82c2db730cd411fd3d765e9a2..29daefb2a5212a1a93f9aec1c16b48a7a8f010ca 100644 (file)
@@ -139,7 +139,7 @@ int atsha204a_idle(struct udevice *dev)
 int atsha204a_sleep(struct udevice *dev)
 {
        int res;
-       u8 req = ATSHA204A_FUNC_IDLE;
+       u8 req = ATSHA204A_FUNC_SLEEP;
 
        res = atsha204a_send(dev, &req, 1);
        if (res)