diff options
| author | Michał Barnaś <[email protected]> | 2024-02-19 16:32:03 +0000 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-03-05 08:08:26 -0500 |
| commit | 6e0d4a7e02fa6d82f70fa74b9be564301111c462 (patch) | |
| tree | d4082c7f849d79f6a9225d274684860e3ec012be | |
| parent | c4841ae4059f5eb46af38f53793f772e3dac140b (diff) | |
misc: atsha204a: fix sleep function
Fix the sleep function to issue the sleep command instead of idle one.
Signed-off-by: Michał Barnaś <[email protected]>
| -rw-r--r-- | drivers/misc/atsha204a-i2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/atsha204a-i2c.c b/drivers/misc/atsha204a-i2c.c index ab83bbc3e95..29daefb2a52 100644 --- a/drivers/misc/atsha204a-i2c.c +++ b/drivers/misc/atsha204a-i2c.c @@ -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) |
