From: David Howells Date: Thu, 7 Feb 2008 08:15:26 +0000 (-0800) Subject: Convert ERR_PTR(PTR_ERR(p)) instances to ERR_CAST(p) X-Git-Tag: v2.6.25-rc1~387 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e231c2ee64eb1c5cd3c63c31da9dac7d888dcf7f;p=pandora-kernel.git Convert ERR_PTR(PTR_ERR(p)) instances to ERR_CAST(p) Convert instances of ERR_PTR(PTR_ERR(p)) to ERR_CAST(p) using: perl -spi -e 's/ERR_PTR[(]PTR_ERR[(](.*)[)][)]/ERR_CAST(\1)/' `grep -rl 'ERR_PTR[(]*PTR_ERR' fs crypto net security` Signed-off-by: David Howells Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- Reading git-diff-tree failed