~ubuntu-branches/ubuntu/quantal/linux-linaro-mx51/quantal

« back to all changes in this revision

Viewing changes to arch/sh/oprofile/backtrace.c

  • Committer: Package Import Robot
  • Author(s): John Rigby, John Rigby
  • Date: 2011-09-26 10:44:23 UTC
  • Revision ID: package-import@ubuntu.com-20110926104423-3o58a3c1bj7x00rs
Tags: 3.0.0-1007.9
[ John Rigby ]

Enable crypto modules and remove crypto-modules from
exclude-module files
LP: #826021

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include <asm/sections.h>
24
24
#include <asm/stacktrace.h>
25
25
 
26
 
static void backtrace_warning_symbol(void *data, char *msg,
27
 
                                     unsigned long symbol)
28
 
{
29
 
        /* Ignore warnings */
30
 
}
31
 
 
32
 
static void backtrace_warning(void *data, char *msg)
33
 
{
34
 
        /* Ignore warnings */
35
 
}
36
 
 
37
26
static int backtrace_stack(void *data, char *name)
38
27
{
39
28
        /* Yes, we want all stacks */
49
38
}
50
39
 
51
40
static struct stacktrace_ops backtrace_ops = {
52
 
        .warning = backtrace_warning,
53
 
        .warning_symbol = backtrace_warning_symbol,
54
41
        .stack = backtrace_stack,
55
42
        .address = backtrace_address,
56
43
};