From 9c0924e80f5690f93e5dd83a29f5e9070a92f0d0 Mon Sep 17 00:00:00 2001 From: focus Date: Sun, 8 Jan 2012 10:27:36 +0000 Subject: [PATCH] framebuffer: make setupGXA public git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-beta@2040 e54a6e83-5905-42d5-8d5c-058d10e6a962 --- src/driver/framebuffer.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/driver/framebuffer.h b/src/driver/framebuffer.h index abacc0d4c..d9a498b1c 100644 --- a/src/driver/framebuffer.h +++ b/src/driver/framebuffer.h @@ -109,7 +109,6 @@ class CFrameBuffer unsigned int smem_start; /* as aquired from the fbdev, the framebuffers physical start address */ volatile uint8_t *gxa_base; /* base address for the GXA's register access */ - void setupGXA(void); #endif /* USE_NEVIS_GXA */ bool locked; std::map icon_cache; @@ -122,6 +121,9 @@ class CFrameBuffer ~CFrameBuffer(); static CFrameBuffer* getInstance(); + #ifdef USE_NEVIS_GXA + void setupGXA(void); + #endif void init(const char * const fbDevice = "/dev/fb/0"); int setMode(unsigned int xRes, unsigned int yRes, unsigned int bpp);