diff options
| author | Daniel Vetter <[email protected]> | 2014-03-19 15:54:37 +0100 |
|---|---|---|
| committer | Daniel Vetter <[email protected]> | 2014-03-19 15:54:37 +0100 |
| commit | b80d6c781e7eb16e24c2a04a88ab6b230bcbbb35 (patch) | |
| tree | aeb0885a6a3499ef96b2472be323965db8e1295e /scripts | |
| parent | 262ca2b08fbdb9346e66ef30424b2226a00e0ffc (diff) | |
| parent | 0b99836f238f37a8632a3ab4f9a8cc2346a36d40 (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.c | 3 |
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); } |