diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2006-12-08 05:40:21 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-08 11:29:05 -0500 |
commit | 572c04b24bd7b7e4b6a684416325cc3751fa8f45 (patch) | |
tree | 7fdc4eacd21ac7c1603f859515badf4a72167f17 /drivers/video/pmagb-b-fb.c | |
parent | b860e73a5488d9e75c2f2907174cb4277c2f9d21 (diff) |
[PATCH] pmagb-b-fb: Fix a default clock frequency
Inspection of real hardware has revealed one of the clock frequencies known
to be supported by PMAGB-B hardware is off by 3kHz. Following is a fix.
Please apply.
Signed-off-by: Maciej W. Rozycki <macro@linux-mips.org>
Acked-by: James Simmons <jsimmons@infradead.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/video/pmagb-b-fb.c')
-rw-r--r-- | drivers/video/pmagb-b-fb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/pmagb-b-fb.c b/drivers/video/pmagb-b-fb.c index 73e2d7d16608..a06a064ad757 100644 --- a/drivers/video/pmagb-b-fb.c +++ b/drivers/video/pmagb-b-fb.c | |||
@@ -186,7 +186,7 @@ static void __init pmagbbfb_screen_setup(struct fb_info *info) | |||
186 | static void __init pmagbbfb_osc_setup(struct fb_info *info) | 186 | static void __init pmagbbfb_osc_setup(struct fb_info *info) |
187 | { | 187 | { |
188 | static unsigned int pmagbbfb_freqs[] __initdata = { | 188 | static unsigned int pmagbbfb_freqs[] __initdata = { |
189 | 130808, 119843, 104000, 92980, 74367, 72800, | 189 | 130808, 119843, 104000, 92980, 74370, 72800, |
190 | 69197, 66000, 65000, 50350, 36000, 32000, 25175 | 190 | 69197, 66000, 65000, 50350, 36000, 32000, 25175 |
191 | }; | 191 | }; |
192 | struct pmagbbfb_par *par = info->par; | 192 | struct pmagbbfb_par *par = info->par; |