repo.or.cz
/
linux-2.6
/
mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PM: ACPI and APM must not be enabled at the same time
[linux-2.6/mini2440.git]
/
include
/
asm-x86
/
resume-trace_32.h
blob
ec9cfd65623005acbcc31a5ecfa873cd80d47ce7
1
#define TRACE_RESUME(user) do { \
2
if (pm_trace_enabled) { \
3
void *tracedata; \
4
asm volatile(
"movl $1f,%0
\n
"
\
5
".section .tracedata,
\"
a
\"\n
"
\
6
"1:
\t
.word %c1
\n
"
\
7
"
\t
.long %c2
\n
"
\
8
".previous"
\
9
:
"=r"
(tracedata) \
10
:
"i"
(__LINE__),
"i"
(__FILE__)); \
11
generate_resume_trace(tracedata, user); \
12
} \
13
} while (0)