Merge pull request #1774 from glneo/error-message

ti: k3: drivers: sec_proxy: Switch error messages
This commit is contained in:
Antonio Niño Díaz 2019-01-22 12:50:51 +00:00 committed by GitHub
commit fcc9ad8928
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}