Skip to content

Commit

Permalink
fbdev: sh_mipi_dsi: typo fix of SH_MIPI_DSI_HBPBM
Browse files Browse the repository at this point in the history
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Acked-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
  • Loading branch information
Kuninori Morimoto authored and Florian Tobias Schandinat committed Nov 21, 2011
1 parent 9250741 commit 32ba95c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drivers/video/sh_mipi_dsi.c
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ static int __init sh_mipi_setup(struct sh_mipi *mipi,
*/
if (pdata->flags & SH_MIPI_DSI_HSABM)
vmctr2 |= 0x20;
if (pdata->flags & SH_MIPI_DSI_HSPBM)
if (pdata->flags & SH_MIPI_DSI_HBPBM)
vmctr2 |= 0x10;
iowrite32(vmctr2, mipi->linkbase + VMCTR2);

Expand Down
2 changes: 1 addition & 1 deletion include/video/sh_mipi_dsi.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ enum sh_mipi_dsi_data_fmt {
struct sh_mobile_lcdc_chan_cfg;

#define SH_MIPI_DSI_HSABM (1 << 0)
#define SH_MIPI_DSI_HSPBM (1 << 1)
#define SH_MIPI_DSI_HBPBM (1 << 1)

struct sh_mipi_dsi_info {
enum sh_mipi_dsi_data_fmt data_format;
Expand Down

0 comments on commit 32ba95c

Please sign in to comment.