mirror of
https://github.com/torvalds/linux.git
synced 2026-05-30 10:04:04 +02:00
drm/rcar-du: dsi: Fix missing parameter in RXSETR_...EN macros
The RXSETR_CRCEN(n) and RXSETR_ECCEN(n) macros both take parameter (n),
add the missing macro parameter. Neither of those macros is used by the
driver, so for now the bug is harmless.
Fixes: 685e8dae19 ("drm/rcar-du: dsi: Implement DSI command support")
Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Reviewed-by: Tomi Valkeinen <tomi.valkeinen+renesas@ideasonboard.com>
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Reported-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Link: https://patch.msgid.link/20251028232959.109936-2-marek.vasut+renesas@mailbox.org
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
This commit is contained in:
parent
0a0e79a2d9
commit
42bbf82b73
|
|
@ -50,8 +50,8 @@
|
|||
#define TXCMPPD3R 0x16c
|
||||
|
||||
#define RXSETR 0x200
|
||||
#define RXSETR_CRCEN (((n) & 0xf) << 24)
|
||||
#define RXSETR_ECCEN (((n) & 0xf) << 16)
|
||||
#define RXSETR_CRCEN(n) (((n) & 0xf) << 24)
|
||||
#define RXSETR_ECCEN(n) (((n) & 0xf) << 16)
|
||||
#define RXPSETR 0x210
|
||||
#define RXPSETR_LPPDACC (1 << 0)
|
||||
#define RXPSR 0x220
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user