Fix the simulator build.

This commit is contained in:
Marco Nelissen
2009-07-17 11:14:53 -07:00
parent 3e1f89bcca
commit 15c9d3af0d

View File

@@ -179,6 +179,7 @@ static int gralloc_alloc_framebuffer(alloc_device_t* dev,
static int init_pmem_area_locked(private_module_t* m) static int init_pmem_area_locked(private_module_t* m)
{ {
int err = 0; int err = 0;
#if HAVE_ANDROID_OS // should probably define HAVE_PMEM somewhere
int master_fd = open("/dev/pmem", O_RDWR, 0); int master_fd = open("/dev/pmem", O_RDWR, 0);
if (master_fd >= 0) { if (master_fd >= 0) {
@@ -206,6 +207,9 @@ static int init_pmem_area_locked(private_module_t* m)
err = -errno; err = -errno;
} }
return err; return err;
#else
return -1;
#endif
} }
static int init_pmem_area(private_module_t* m) static int init_pmem_area(private_module_t* m)