summaryrefslogtreecommitdiff
blob: dcb2141197c48009485c444478cb63ad2286e411 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
--- eciadsl-usermode-0.11/pusb-linux.c.orig	2007-11-24 23:05:42.000000000 +0100
+++ eciadsl-usermode-0.11/pusb-linux.c	2007-11-24 23:12:15.000000000 +0100
@@ -29,7 +29,6 @@
 #include <string.h>
 
 #include "pusb-linux.h"
-#include <asm/page.h>
 
 struct pusb_endpoint_t
 {
@@ -392,13 +391,18 @@
 {
 	struct usbdevfs_bulktransfer bulk;
 	int ret, received = 0;
+	static long pagesize = 0;
+	
+	if (pagesize == 0)
+		pagesize = sysconf(_SC_PAGESIZE);
+		
 
 	do
     {
 		bulk.ep      = ep;
 		bulk.len     = size;
-		if (bulk.len > PAGE_SIZE)
-			bulk.len = PAGE_SIZE;
+		if (size > pagesize)
+			bulk.len = pagesize;
 		bulk.timeout = timeout;
 		bulk.data    = buf;