From 60b37dbedcfe6e22fe9a61ee8432ae7bd2780483 Mon Sep 17 00:00:00 2001 From: Adam Weinberger Date: Mon, 28 Jul 2014 21:54:33 +0000 Subject: Rename german/ and graphics/ patch-xy patches to reflect the files they modify. --- graphics/picturebook/files/patch-setbrightness.c | 96 ++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 graphics/picturebook/files/patch-setbrightness.c (limited to 'graphics/picturebook/files/patch-setbrightness.c') diff --git a/graphics/picturebook/files/patch-setbrightness.c b/graphics/picturebook/files/patch-setbrightness.c new file mode 100644 index 000000000000..a782221d66f8 --- /dev/null +++ b/graphics/picturebook/files/patch-setbrightness.c @@ -0,0 +1,96 @@ +--- setbrightness.c.orig Tue Dec 12 01:42:20 2000 ++++ setbrightness.c Sun Mar 9 18:20:58 2003 +@@ -1,20 +1,51 @@ + #define _XOPEN_SOURCE 500 ++#define __BSD_VISIBLE 1 + #include + #include + #include + #include + #include ++#ifdef LINUX + #include ++#endif + #include + #include + #include ++#ifdef LINUX + #include ++#endif + #include + #include ++#ifdef HAVE_GETOPT_H + #include ++#endif ++#ifdef LINUX + #include ++#endif + #include + ++#ifdef __FreeBSD__ ++#include ++static int deviofd=-1; ++static int iopl(int lvl) ++{ ++ if(lvl==0){ ++ if(deviofd!=-1){ ++ close(deviofd); ++ deviofd=-1; ++ } ++ return 0; ++ }else if(lvl==3){ ++ if(deviofd==-1){ ++ deviofd=open("/dev/io",0); ++ } ++ return deviofd; ++ } ++ return -1; ++} ++ ++#endif ++ + + #define DATA_REG 0x62 + #define CST_REG 0x66 +@@ -24,28 +55,35 @@ + static void ecr_set(u16 addr, u16 value) + { + while (inw(CST_REG) & 3) usleep(1); +- outw(0x81, CST_REG); ++ outw(CST_REG, 0x81); + while (inw(CST_REG) & 2) usleep(1); +- outw(addr, DATA_REG); ++ outw(DATA_REG, addr); + while (inw(CST_REG) & 2) usleep(1); +- outw(value, DATA_REG); ++ outw(DATA_REG, value); + while (inw(CST_REG) & 2) usleep(1); + } + + static u16 ecr_get(u16 addr) + { + while (inw(CST_REG) & 3) usleep(1); +- outb(0x80, CST_REG); ++ outb(CST_REG, 0x80); + while (inw(CST_REG) & 2) usleep(1); +- outb(addr, DATA_REG); ++ outb(DATA_REG, addr); + while (inw(CST_REG) & 2) usleep(1); + return inw(DATA_REG); + } + + int main(int argc, char *argv[]) + { ++ if(open("/dev/io", O_RDWR, 0) < 0) ++ { ++ perror("/dev/io"); ++ return 1; ++ } + iopl(3); + printf("currently %x\n", ecr_get(0x96)); +- ecr_set(0x96, atoi(argv[1])); ++ if ( argv[1] != NULL ){ ++ ecr_set(0x96, atoi(argv[1])); ++ } + return 0; + } -- cgit v1.2.3