Commit 4f9444cd authored by Andrew F. Davis's avatar Andrew F. Davis
Browse files

ti: k3: drivers: sec_proxy: Switch error messages



The logic is correct here, but the error messages are
reversed, switch them.
Signed-off-by: default avatarAndrew F. Davis <afd@ti.com>
Acked-by: default avatarNishanth Menon <nm@ti.com>
parent c40c88f8
......@@ -139,10 +139,10 @@ static inline int k3_sec_proxy_verify_thread(struct k3_sec_proxy_thread *spt,
if ((mmio_read_32(spt->scfg + SCFG_THREAD_CTRL) & SCFG_THREAD_CTRL_DIR_MASK)
!= (dir << SCFG_THREAD_CTRL_DIR_SHIFT)) {
if (dir)
ERROR("Trying to receive data on tx Thread %d\n",
ERROR("Trying to send data on RX Thread %d\n",
spt->id);
else
ERROR("Trying to send data on rx Thread %d\n",
ERROR("Trying to receive data on TX Thread %d\n",
spt->id);
return -EINVAL;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment