On Wednesday, January 26, 2011 4:51 PM, Ryan Mallon wrote:
On 01/08/2011 11:38 AM, H Hartley Sweeten wrote:
quoted
The ep9307, ep9312, and ep9315 variants of the ep93xx processor include the
raster engine needed for framebuffer support.
This allows the EDB93xx boards with those processors to use the framebuffer
driver.
Tested on an EDB9307A with the following kernel parameters:
video=640x480-16 at 60
video=1024x768-16 at 60
Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
quoted
+static int __init edb93xx_has_fb(void)
+{
+ if (machine_is_edb9307() || machine_is_edb9307a() ||
+ machine_is_edb9312() || machine_is_edb9315() ||
+ machine_is_edb9315a()) {
return (machine_is_edb9307() || machine_is_edb9307a() ...
OK.
I'm wondering if these *_has_{peripheral} helpers should just be defines and
moved to one of the mach headers. That way the other ep93xx platforms can
use the same helpers.
Regards,
Hartley