Commit f35e4d7d authored by James Simmons's avatar James Simmons

M68k fbdev fixes

parent 5e9a93e1
...@@ -158,7 +158,7 @@ static inline void aty_st_le32(int regindex, u32 val, ...@@ -158,7 +158,7 @@ static inline void aty_st_le32(int regindex, u32 val,
regindex -= 0x800; regindex -= 0x800;
#ifdef CONFIG_ATARI #ifdef CONFIG_ATARI
out_le32((volatile u32 *)(par->ati_regbase + regindex)); out_le32((volatile u32 *)(par->ati_regbase + regindex), val);
#else #else
writel(val, par->ati_regbase + regindex); writel(val, par->ati_regbase + regindex);
#endif #endif
......
...@@ -2241,7 +2241,7 @@ int __init atyfb_init(void) ...@@ -2241,7 +2241,7 @@ int __init atyfb_init(void)
aty_ld_le32(CRTC_H_TOTAL_DISP, default_par); aty_ld_le32(CRTC_H_TOTAL_DISP, default_par);
crtc.h_sync_strt_wid = crtc.h_sync_strt_wid =
aty_ld_le32(CRTC_H_SYNC_STRT_WID, aty_ld_le32(CRTC_H_SYNC_STRT_WID,
defualt_par); default_par);
crtc.v_tot_disp = crtc.v_tot_disp =
aty_ld_le32(CRTC_V_TOTAL_DISP, default_par); aty_ld_le32(CRTC_V_TOTAL_DISP, default_par);
crtc.v_sync_strt_wid = crtc.v_sync_strt_wid =
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment