Skip to content

Commit

Permalink
sparc64: Kill unnecessary cast in profile_timer_exceptions_notify().
Browse files Browse the repository at this point in the history
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
David S. Miller committed Sep 9, 2009
1 parent a8f2226 commit 4e85f59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/sparc/oprofile/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 4e85f59

Please sign in to comment.