Skip to content

Commit

Permalink
scripts/dtc: Only emit local fixups for overlays
Browse files Browse the repository at this point in the history
Signed-off-by: Phil Elwell <phil@raspberrypi.org>
  • Loading branch information
Phil Elwell committed Apr 19, 2016
1 parent e0a9cf3 commit 20d521b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/dtc/checks.c
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ static void fixup_phandle_references(struct check *c, struct node *dt,
}

/* if it's a local reference, we need to record it */
if (symbol_fixup_support) {
if (symbol_fixup_support && dt->is_plugin) {

/* allocate a new local fixup entry */
fe = xmalloc(sizeof(*fe));
Expand Down

0 comments on commit 20d521b

Please sign in to comment.