aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDaniel Vetter <[email protected]>2014-03-19 15:54:37 +0100
committerDaniel Vetter <[email protected]>2014-03-19 15:54:37 +0100
commitb80d6c781e7eb16e24c2a04a88ab6b230bcbbb35 (patch)
treeaeb0885a6a3499ef96b2472be323965db8e1295e /scripts
parent262ca2b08fbdb9346e66ef30424b2226a00e0ffc (diff)
parent0b99836f238f37a8632a3ab4f9a8cc2346a36d40 (diff)
Merge branch 'topic/dp-aux-rework' into drm-intel-next-queued
Conflicts: drivers/gpu/drm/i915/intel_dp.c A bit a mess with reverts which differe in details between -fixes and -next and some other unrelated shuffling. Signed-off-by: Daniel Vetter <[email protected]>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/kallsyms.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/kallsyms.c b/scripts/kallsyms.c
index 276e84b8a8e5..10085de886fe 100644
--- a/scripts/kallsyms.c
+++ b/scripts/kallsyms.c
@@ -330,7 +330,8 @@ static void write_src(void)
printf("\tPTR\t_text + %#llx\n",
table[i].addr - _text);
else
- printf("\tPTR\t%#llx\n", table[i].addr);
+ printf("\tPTR\t_text - %#llx\n",
+ _text - table[i].addr);
} else {
printf("\tPTR\t%#llx\n", table[i].addr);
}