diff options
author | Timur Tabi <timur@freescale.com> | 2011-06-23 20:20:26 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2011-06-24 17:08:49 +0900 |
commit | 39785eb1d3e6c58cc8bf8f6990956a58037ecc75 (patch) | |
tree | b896a48b483803124c940ff99e7ffdfd4a4a171c /include | |
parent | 9377c51752970c305fae29ac634501fde44378cb (diff) | |
download | linux-stable-39785eb1d3e6c58cc8bf8f6990956a58037ecc75.tar.gz linux-stable-39785eb1d3e6c58cc8bf8f6990956a58037ecc75.tar.bz2 linux-stable-39785eb1d3e6c58cc8bf8f6990956a58037ecc75.zip |
fsl-diu-fb: remove check for pixel clock ranges
The Freescale DIU framebuffer driver defines two constants, MIN_PIX_CLK and
MAX_PIX_CLK, that are supposed to represent the lower and upper limits of
the pixel clock. These values, however, are true only for one platform
clock rate (533MHz) and only for the MPC8610. So the actual range for
the pixel clock is chip-specific, which means the current values are almost
always wrong. The chance of an out-of-range pixel clock being used are also
remote.
Rather than try to detect an out-of-range clock in the DIU driver, we depend
on the board-specific pixel clock function (e.g. p1022ds_set_pixel_clock)
to clamp the pixel clock to a supported value.
Signed-off-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/fsl-diu-fb.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/linux/fsl-diu-fb.h b/include/linux/fsl-diu-fb.h index 781d4671415f..daa9952d2174 100644 --- a/include/linux/fsl-diu-fb.h +++ b/include/linux/fsl-diu-fb.h @@ -24,12 +24,6 @@ * See mpc8610fb_set_par(), map_video_memory(), and unmap_video_memory() */ #define MEM_ALLOC_THRESHOLD (1024*768*4+32) -/* Minimum value that the pixel clock can be set to in pico seconds - * This is determined by platform clock/3 where the minimum platform - * clock is 533MHz. This gives 5629 pico seconds. - */ -#define MIN_PIX_CLK 5629 -#define MAX_PIX_CLK 96096 #include <linux/types.h> |