mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-10 04:29:11 -04:00
[PATCH] synclink: remove PAGE_SIZE reference
Remove reference to PAGE_SIZE that causes errors if PAGE_SIZE != 4096 Signed-off-by: Paul Fulghum <paulkf@microgate.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
59f148005c
commit
623a43952a
@@ -133,8 +133,8 @@ static MGSL_PARAMS default_params = {
|
||||
};
|
||||
|
||||
#define SHARED_MEM_ADDRESS_SIZE 0x40000
|
||||
#define BUFFERLISTSIZE (PAGE_SIZE)
|
||||
#define DMABUFFERSIZE (PAGE_SIZE)
|
||||
#define BUFFERLISTSIZE 4096
|
||||
#define DMABUFFERSIZE 4096
|
||||
#define MAXRXFRAMES 7
|
||||
|
||||
typedef struct _DMABUFFERENTRY
|
||||
|
||||
Reference in New Issue
Block a user