The patch titled synclink: remove PAGE_SIZE reference has been removed from the -mm tree. Its filename is synclink-remove-page_size-reference.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: synclink: remove PAGE_SIZE reference From: Paul Fulghum <paulkf@xxxxxxxxxxxxx> Remove reference to PAGE_SIZE that causes errors if PAGE_SIZE != 4096 Signed-off-by: Paul Fulghum <paulkf@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/char/synclink.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/char/synclink.c~synclink-remove-page_size-reference drivers/char/synclink.c --- a/drivers/char/synclink.c~synclink-remove-page_size-reference +++ a/drivers/char/synclink.c @@ -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 _ Patches currently in -mm which might be from paulkf@xxxxxxxxxxxxx are origin.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html