From: David S. Miller Date: Wed, 9 Sep 2009 06:20:39 +0000 (-0700) Subject: sparc64: Kill unnecessary cast in profile_timer_exceptions_notify(). X-Git-Tag: v2.6.32-rc1~702^2~10 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=4e85f5915dedb7c852c1e1189aa4133c87798a5e;p=linux.git sparc64: Kill unnecessary cast in profile_timer_exceptions_notify(). Signed-off-by: David S. Miller --- diff --git a/arch/sparc/oprofile/init.c b/arch/sparc/oprofile/init.c index 9ce34fd294c9..f97cb8b6ee5f 100644 --- a/arch/sparc/oprofile/init.c +++ b/arch/sparc/oprofile/init.c @@ -21,7 +21,7 @@ static int profile_timer_exceptions_notify(struct notifier_block *self, unsigned long val, void *data) { - struct die_args *args = (struct die_args *)data; + struct die_args *args = data; int ret = NOTIFY_DONE; switch (val) {