Files
openbios/drivers/cuda.h
Blue Swirl d7208a6daf Fix Sparse warnings
git-svn-id: svn://coreboot.org/openbios/openbios-devel@296 f158a5a8-5612-0410-a976-696ce0be7e32
2008-12-20 18:36:23 +00:00

20 lines
283 B
C

#include "adb.h"
struct cuda_t {
uint32_t base;
adb_bus_t *adb_bus;
};
typedef struct cuda_t cuda_t;
enum {
CHARDEV_KBD = 0,
CHARDEV_MOUSE,
CHARDEV_SERIAL,
CHARDEV_DISPLAY,
CHARDEV_LAST,
};
extern phandle_t pic_handle;
cuda_t *cuda_init (const char *path, uint32_t base);