Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 271369
b: refs/heads/master
c: bfe4f8d
h: refs/heads/master
i:
  271367: fa7df94
v: v3
  • Loading branch information
Tomi Valkeinen committed Sep 20, 2011
1 parent 49cc6b4 commit 7c38fcc
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 20 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e13a138bc68259dc630cb903942975efa40d2bd9
refs/heads/master: bfe4f8d32df9d2afa5fb0dccca9dfdef8573f04a
5 changes: 1 addition & 4 deletions trunk/drivers/video/omap2/dss/dsi.c
Original file line number Diff line number Diff line change
Expand Up @@ -4441,10 +4441,7 @@ static int dsi_get_clocks(struct platform_device *dsidev)

dsi->dss_clk = clk;

if (cpu_is_omap34xx() || cpu_is_omap3630())
clk = clk_get(&dsidev->dev, "dss2_alwon_fck");
else
clk = clk_get(&dsidev->dev, "sys_clk");
clk = clk_get(&dsidev->dev, "sys_clk");
if (IS_ERR(clk)) {
DSSERR("can't get sys_clk\n");
clk_put(dsi->dss_clk);
Expand Down
5 changes: 0 additions & 5 deletions trunk/drivers/video/omap2/dss/dss.c
Original file line number Diff line number Diff line change
Expand Up @@ -691,11 +691,6 @@ static void dss_put_clocks(void)
clk_put(dss.dss_clk);
}

struct clk *dss_get_ick(void)
{
return clk_get(&dss.pdev->dev, "ick");
}

int dss_runtime_get(void)
{
int r;
Expand Down
2 changes: 0 additions & 2 deletions trunk/drivers/video/omap2/dss/dss.h
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,6 @@ void dss_uninit_platform_driver(void);
int dss_runtime_get(void);
void dss_runtime_put(void);

struct clk *dss_get_ick(void);

void dss_select_hdmi_venc_clk_source(enum dss_hdmi_venc_clk_source_select);
const char *dss_get_generic_clk_source_name(enum omap_dss_clk_source clk_src);
void dss_dump_clocks(struct seq_file *s);
Expand Down
5 changes: 1 addition & 4 deletions trunk/drivers/video/omap2/dss/rfbi.c
Original file line number Diff line number Diff line change
Expand Up @@ -957,10 +957,7 @@ static int omap_rfbihw_probe(struct platform_device *pdev)

msleep(10);

if (cpu_is_omap24xx() || cpu_is_omap34xx() || cpu_is_omap3630())
clk = dss_get_ick();
else
clk = clk_get(&pdev->dev, "ick");
clk = clk_get(&pdev->dev, "ick");
if (IS_ERR(clk)) {
DSSERR("can't get ick\n");
r = PTR_ERR(clk);
Expand Down
5 changes: 1 addition & 4 deletions trunk/drivers/video/omap2/dss/venc.c
Original file line number Diff line number Diff line change
Expand Up @@ -741,10 +741,7 @@ static int venc_get_clocks(struct platform_device *pdev)
venc.tv_clk = clk;

if (dss_has_feature(FEAT_VENC_REQUIRES_TV_DAC_CLK)) {
if (cpu_is_omap34xx() || cpu_is_omap3630())
clk = clk_get(&pdev->dev, "dss_96m_fck");
else
clk = clk_get(&pdev->dev, "tv_dac_clk");
clk = clk_get(&pdev->dev, "tv_dac_clk");
if (IS_ERR(clk)) {
DSSERR("can't get tv_dac_clk\n");
clk_put(venc.tv_clk);
Expand Down

0 comments on commit 7c38fcc

Please sign in to comment.