diff options
author | B. Watson <yalhcru@gmail.com> | 2022-01-01 17:15:00 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-01-04 07:55:39 +0700 |
commit | 1f2d28088c8e9646486ce6d40156b4feddc8c233 (patch) | |
tree | 036eab5c48c891f035aff2431545567377a01f70 /audio/oss/gcc-5.patch | |
parent | 1571ed856502dd5ad98d3c062badb91ede4f1548 (diff) |
audio/oss: Removed (won't build on recent kernels).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio/oss/gcc-5.patch')
-rw-r--r-- | audio/oss/gcc-5.patch | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/audio/oss/gcc-5.patch b/audio/oss/gcc-5.patch deleted file mode 100644 index 5b303b4975960..0000000000000 --- a/audio/oss/gcc-5.patch +++ /dev/null @@ -1,52 +0,0 @@ ---- kernel/OS/Linux/os_linux.h 2015-01-28 08:07:23.000000000 +0000 -+++ kernel/OS/Linux/os_linux.h 2015-06-01 23:12:46.044784820 +0100 -@@ -119,7 +119,7 @@ - /* System wall timer access */ - #define GET_JIFFIES() oss_get_jiffies() - --extern inline unsigned int -+__attribute__ ((gnu_inline)) extern inline unsigned int - __inb (unsigned short port) - { - unsigned int _v; -@@ -127,7 +127,7 @@ - "0" (0)); - return _v; - } --extern inline unsigned int -+__attribute__ ((gnu_inline)) extern inline unsigned int - __inw (unsigned short port) - { - unsigned int _v; -@@ -135,7 +135,7 @@ - "0" (0)); - return _v; - } --extern inline unsigned int -+__attribute__ ((gnu_inline)) extern inline unsigned int - __inl (unsigned short port) - { - unsigned int _v; -@@ -143,19 +143,19 @@ - return _v; - } - --extern inline void -+__attribute__ ((gnu_inline)) extern inline unsigned int - __outb (unsigned char value, unsigned short port) - { - __asm__ __volatile__ ("out" "b" " %" "b" "0,%" "w" "1"::"a" (value), - "d" (port)); - } --extern inline void -+__attribute__ ((gnu_inline)) extern inline unsigned int - __outw (unsigned short value, unsigned short port) - { - __asm__ __volatile__ ("out" "w" " %" "w" "0,%" "w" "1"::"a" (value), - "d" (port)); - } --extern inline void -+__attribute__ ((gnu_inline)) extern inline unsigned int - __outl (unsigned int value, unsigned short port) - { - __asm__ __volatile__ ("out" "l" " %" "0,%" "w" "1"::"a" (value), |