diff options
author | Tim Yamin <plasmaroo@gentoo.org> | 2004-08-25 17:57:06 +0000 |
---|---|---|
committer | Tim Yamin <plasmaroo@gentoo.org> | 2004-08-25 17:57:06 +0000 |
commit | d04eab9b6cd1ef6a140bd73b969b87c6aff99784 (patch) | |
tree | acbadd5747052d8e4b146be7c059dd6a041e96db /sys-kernel | |
parent | new gtk2 version (Manifest recommit) (diff) | |
download | gentoo-2-d04eab9b6cd1ef6a140bd73b969b87c6aff99784.tar.gz gentoo-2-d04eab9b6cd1ef6a140bd73b969b87c6aff99784.tar.bz2 gentoo-2-d04eab9b6cd1ef6a140bd73b969b87c6aff99784.zip |
Fix for xfce4-netload.
Diffstat (limited to 'sys-kernel')
-rw-r--r-- | sys-kernel/linux26-headers/ChangeLog | 6 | ||||
-rw-r--r-- | sys-kernel/linux26-headers/files/linux26-headers-2.6.8.1-appCompat.patch | 18 |
2 files changed, 23 insertions, 1 deletions
diff --git a/sys-kernel/linux26-headers/ChangeLog b/sys-kernel/linux26-headers/ChangeLog index 3e7063aa6d65..8ce28af2963b 100644 --- a/sys-kernel/linux26-headers/ChangeLog +++ b/sys-kernel/linux26-headers/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-kernel/linux26-headers # Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/linux26-headers/ChangeLog,v 1.23 2004/08/24 23:42:15 plasmaroo Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/linux26-headers/ChangeLog,v 1.24 2004/08/25 17:57:06 plasmaroo Exp $ + + 25 Aug 2004; <plasmaroo@gentoo.org> + files/linux26-headers-2.6.8.1-appCompat.patch: + Fix for xfce4-netload. *linux26-headers-2.6.8.1 (25 Aug 2004) diff --git a/sys-kernel/linux26-headers/files/linux26-headers-2.6.8.1-appCompat.patch b/sys-kernel/linux26-headers/files/linux26-headers-2.6.8.1-appCompat.patch index 458adf8fa8f5..739e2993bbd6 100644 --- a/sys-kernel/linux26-headers/files/linux26-headers-2.6.8.1-appCompat.patch +++ b/sys-kernel/linux26-headers/files/linux26-headers-2.6.8.1-appCompat.patch @@ -1529,3 +1529,21 @@ diff -ur linux-2.6.8.1/include/linux/videodev2.h linux-2.6.8.1-gentoo/include/li #ifdef __KERNEL__ #include <linux/time.h> /* need struct timeval */ #endif +diff -ur linux-2.6.8.1/include/linux/crc-ccitt.h linux-2.6.8.1-gentoo/include/linux/crc-ccitt.h +--- linux-2.6.8.1/include/linux/crc-ccitt.h 2004-08-20 19:54:37.000000000 +0100 ++++ linux-2.6.8.1-gentoo/include/linux/crc-ccitt.h 2004-08-25 18:49:57.048297800 +0100 +@@ -3,11 +3,11 @@ + + #include <linux/types.h> + +-extern u16 const crc_ccitt_table[256]; ++extern __u16 const crc_ccitt_table[256]; + +-extern u16 crc_ccitt(u16 crc, const u8 *buffer, size_t len); ++extern __u16 crc_ccitt(__u16 crc, const __u8 *buffer, size_t len); + +-static inline u16 crc_ccitt_byte(u16 crc, const u8 c) ++static inline __u16 crc_ccitt_byte(__u16 crc, const __u8 c) + { + return (crc >> 8) ^ crc_ccitt_table[(crc ^ c) & 0xff]; + } |