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

« back to all changes in this revision

Viewing changes to include/trace/ftrace.h

  • 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:
205
205
                ftrace_print_symbols_seq(p, value, symbols);            \
206
206
        })
207
207
 
 
208
#undef __print_symbolic_u64
 
209
#if BITS_PER_LONG == 32
 
210
#define __print_symbolic_u64(value, symbol_array...)                    \
 
211
        ({                                                              \
 
212
                static const struct trace_print_flags_u64 symbols[] =   \
 
213
                        { symbol_array, { -1, NULL } };                 \
 
214
                ftrace_print_symbols_seq_u64(p, value, symbols);        \
 
215
        })
 
216
#else
 
217
#define __print_symbolic_u64(value, symbol_array...)                    \
 
218
                        __print_symbolic(value, symbol_array)
 
219
#endif
 
220
 
208
221
#undef __print_hex
209
222
#define __print_hex(buf, buf_len) ftrace_print_hex_seq(p, buf, buf_len)
210
223