diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-01-19 19:35:14 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-01-19 19:35:14 +0000 |
commit | 8a33e90e22c8672a2eb7d55fad2e4e0889811058 (patch) | |
tree | 404ff70c702cc0913ed0c23fd493b8c7afd9937f /sysutils/lcdproc/files/patch-port.h | |
parent | - Update to 1.0.2 (diff) |
- Update to 0.4.5
PR: ports/76433
Submitted by: Lewis Thompson <purple@fajita.org>
Notes
Notes:
svn path=/head/; revision=126857
Diffstat (limited to 'sysutils/lcdproc/files/patch-port.h')
-rw-r--r-- | sysutils/lcdproc/files/patch-port.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/sysutils/lcdproc/files/patch-port.h b/sysutils/lcdproc/files/patch-port.h new file mode 100644 index 000000000000..6d90480b6171 --- /dev/null +++ b/sysutils/lcdproc/files/patch-port.h @@ -0,0 +1,20 @@ +--- server/drivers/port.h.orig Tue Jan 18 20:04:12 2005 ++++ server/drivers/port.h Tue Jan 18 20:04:29 2005 +@@ -64,7 +64,7 @@ + + // Write a byte 'val' to port + static inline void port_out (unsigned short int port, unsigned char val) { +- outb(val, port); ++# outb(val, port); + } + + // Get access to a specific port +@@ -91,7 +91,7 @@ + + // Write a byte 'val' to port + static inline void port_out (unsigned short int port, unsigned char val) { +- outb(port, val); ++# outb(port, val); + } + + static inline void setaccess(u_long * map, u_int bit, int allow) { |