From: Mark Salter Date: Wed, 7 Mar 2012 16:19:31 +0000 (-0500) Subject: C6X: fix KSTK_EIP and KSTK_ESP macros X-Git-Tag: v3.3-rc7~8^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4cd7c0a03ea44ef88fa0d3901d671798d23cbc35;p=pandora-kernel.git C6X: fix KSTK_EIP and KSTK_ESP macros There was a latent typo in the C6X KSTK_EIP and KSTK_ESP macros which caused a problem with a new patch which used them. The broken definitions were of the form: #define KSTK_FOO(tsk) (task_pt_regs(task)->foo) Note the use of task vs tsk. This actually worked before because the only place in the kernel which used these macros passed in a local pointer named task. Signed-off-by: Mark Salter --- Reading git-diff-tree failed