Chameleon

Chameleon Svn Source Tree

Root/branches/meklort/i386/modules/GraphicsEnabler/gma.h

Source at commit 658 created 13 years 5 months ago.
By meklort, Makeful update (again). Added a ugly hack so that only c++ modules will link agains the uClibc++ module. Removed the possibility for modules to link agains themselfs. Added laxydylib1.c so that if you try to compile a module with -lazy_library instead of -weak_library, the build will not fail
1#ifndef __LIBSAIO_GMA_H
2#define __LIBSAIO_GMA_H
3
4bool setup_gma_devprop(pci_dt_t *gma_dev);
5
6struct gma_gpu_t {
7unsigned device;
8char *name;
9};
10
11#define REG8(reg) ((volatile uint8_t *)regs)[(reg)]
12#define REG16(reg) ((volatile uint16_t *)regs)[(reg) >> 1]
13#define REG32(reg) ((volatile uint32_t *)regs)[(reg) >> 2]
14
15
16#endif /* !__LIBSAIO_GMA_H */
17

Archive Download this file

Revision: 658