From: Chen Gang Date: Wed, 29 May 2013 11:04:09 +0000 (+0800) Subject: alpha: kernel: typo issue, using '1' instead of '11' X-Git-Tag: v3.11-rc3~25^2~11 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=91b678c8edb7d8abd444705df63b80af31ad13e8;p=pandora-kernel.git alpha: kernel: typo issue, using '1' instead of '11' For sending message: *(unsigned int *)&cpu->ipc_buffer[0] = len; cp1 = (char *) &cpu->ipc_buffer[1]; But for receive message: cnt = cpu->ipc_buffer[0] >> 32; ... cp1 = (char *) &cpu->ipc_buffer[11]; They are not pairs, it is typo issue of the redundency '1'. So need use '1' instead of '11'. Reviewed-by: Matt Turner Signed-off-by: Matt Turner Signed-off-by: Chen Gang --- Reading git-diff-tree failed