diff options
author | David S. Miller <davem@davemloft.net> | 2009-09-08 23:20:39 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-09-08 23:20:39 -0700 |
commit | 4e85f5915dedb7c852c1e1189aa4133c87798a5e (patch) | |
tree | 8db7abf69a2bc870877229fd1d1c18fc81e7d0e8 /arch/sparc | |
parent | a8f22264550e64c0cd11fb6647284b0bd6407f9c (diff) | |
download | op-kernel-dev-4e85f5915dedb7c852c1e1189aa4133c87798a5e.zip op-kernel-dev-4e85f5915dedb7c852c1e1189aa4133c87798a5e.tar.gz |
sparc64: Kill unnecessary cast in profile_timer_exceptions_notify().
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc')
-rw-r--r-- | arch/sparc/oprofile/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/oprofile/init.c b/arch/sparc/oprofile/init.c index 9ce34fd..f97cb8b 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) { |