summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/xf86-video-ivtvfb/xf86-video-ivtv-pagesize.patch
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2010-10-23 18:17:40 (GMT)
committerJames Meyer <james.meyer@operamail.com>2010-10-23 18:19:39 (GMT)
commitadbcf19958300e9b6598990184c8815b945ba0ee (patch)
treef4283c850ac0ac202c17e78a637ee7ca8147621b /abs/core-testing/xf86-video-ivtvfb/xf86-video-ivtv-pagesize.patch
parent61a68250df10d29b624650948484898334ff22d0 (diff)
downloadlinhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.zip
linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.gz
linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.bz2
Removed old core and extra from repo. Renamed -testing to core/extra. This will setup the base for the testing branch.
Diffstat (limited to 'abs/core-testing/xf86-video-ivtvfb/xf86-video-ivtv-pagesize.patch')
-rw-r--r--abs/core-testing/xf86-video-ivtvfb/xf86-video-ivtv-pagesize.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/abs/core-testing/xf86-video-ivtvfb/xf86-video-ivtv-pagesize.patch b/abs/core-testing/xf86-video-ivtvfb/xf86-video-ivtv-pagesize.patch
deleted file mode 100644
index 61272f3..0000000
--- a/abs/core-testing/xf86-video-ivtvfb/xf86-video-ivtv-pagesize.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff -rauN xf86-video-ivtv-1.0.1/src/ivtv_hw.c xf86-video-ivtv-pagesize-patch/src/ivtv_hw.c
---- xf86-video-ivtv-1.0.1/src/ivtv_hw.c 2008-02-28 08:05:23.000000000 +0100
-+++ xf86-video-ivtv-pagesize-patch/src/ivtv_hw.c 2009-02-14 18:07:01.000000000 +0100
-@@ -54,7 +54,6 @@
-
- #include "xf86cmap.h"
-
--#include "asm/page.h" /* #define for PAGE_* */
- #include "globals.h"
- #define DPMS_SERVER
- #include <X11/extensions/dpms.h>
-@@ -570,7 +569,7 @@
- ivtvHWMapVidmem(ScrnInfoPtr pScrn)
- {
- ivtvHWPtr hwPtr = IVTVDEVHWPTR(pScrn);
-- long page_mask = ~(sysconf(_SC_PAGESIZE) - 1);
-+ long page_mask = ~(getpagesize() - 1);
-
- TRACE_ENTER("MapVidmem");
- if (NULL == hwPtr->fbmem) {