Skip to content

Commit 82e7c5e

Browse files
author
Laurent Pinchart
committed
drm: rcar-du: lvds: Rename PLLEN bit to PLLON
The bit is named PLLON in the datasheet, rename it. Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
1 parent 5e1ac3b commit 82e7c5e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

drivers/gpu/drm/rcar-du/rcar_du_lvdsenc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ static int rcar_du_lvdsenc_start(struct rcar_du_lvdsenc *lvds,
102102
/* Turn the PLL on, wait for the startup delay, and turn the output
103103
* on.
104104
*/
105-
lvdcr0 |= LVDCR0_PLLEN;
105+
lvdcr0 |= LVDCR0_PLLON;
106106
rcar_lvds_write(lvds, LVDCR0, lvdcr0);
107107

108108
usleep_range(100, 150);

drivers/gpu/drm/rcar-du/rcar_lvds_regs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#define LVDCR0_DMD (1 << 12)
1919
#define LVDCR0_LVMD_MASK (0xf << 8)
2020
#define LVDCR0_LVMD_SHIFT 8
21-
#define LVDCR0_PLLEN (1 << 4)
21+
#define LVDCR0_PLLON (1 << 4)
2222
#define LVDCR0_BEN (1 << 2)
2323
#define LVDCR0_LVEN (1 << 1)
2424
#define LVDCR0_LVRES (1 << 0)

0 commit comments

Comments
 (0)