diff options
author | Ian Stakenvicius <axs@gentoo.org> | 2012-11-27 18:49:26 +0000 |
---|---|---|
committer | Ian Stakenvicius <axs@gentoo.org> | 2012-11-27 18:49:26 +0000 |
commit | d7e256a861ea32ff65f65b6481fa2a50509a2e56 (patch) | |
tree | b0335094a67e3ac8b95478de082ae2a0b6872e92 /app-misc/lirc/files | |
parent | Drop apache herd as discussed in http://www.gossamer-threads.com/lists/gentoo... (diff) | |
download | gentoo-2-d7e256a861ea32ff65f65b6481fa2a50509a2e56.tar.gz gentoo-2-d7e256a861ea32ff65f65b6481fa2a50509a2e56.tar.bz2 gentoo-2-d7e256a861ea32ff65f65b6481fa2a50509a2e56.zip |
added err() to kcompat.h as has been removed from usb.h in kernels >=3.5, fixing bug 444736
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 2B6559ED)
Diffstat (limited to 'app-misc/lirc/files')
-rw-r--r-- | app-misc/lirc/files/lirc-0.9.0-kernel-3.5-err-fix.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app-misc/lirc/files/lirc-0.9.0-kernel-3.5-err-fix.patch b/app-misc/lirc/files/lirc-0.9.0-kernel-3.5-err-fix.patch new file mode 100644 index 000000000000..b06d94efb322 --- /dev/null +++ b/app-misc/lirc/files/lirc-0.9.0-kernel-3.5-err-fix.patch @@ -0,0 +1,12 @@ +--- a/drivers/kcompat.h 2011-03-25 18:28:18.000000000 -0400 ++++ b/drivers/kcompat.h 2012-11-27 13:37:55.000000000 -0500 +@@ -136,4 +136,9 @@ + ) + #endif + ++#ifndef err ++#define err(format, arg...) \ ++ printk(KERN_ERR KBUILD_MODNAME ": " format "\n", ##arg) ++#endif ++ + #endif /* _KCOMPAT_H */ |