Skip to content

Commit

Permalink
Merge branch 'dt-for-linus' of git://sources.calxeda.com/kernel/linux
Browse files Browse the repository at this point in the history
* 'dt-for-linus' of git://sources.calxeda.com/kernel/linux:
  of: Add Silicon Image vendor prefix
  of/irq: of_irq_init: add check for parent equal to child node
  • Loading branch information
torvalds committed Dec 1, 2011
2 parents d6e92d3 + e43fce1 commit c290b2f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions Documentation/devicetree/bindings/vendor-prefixes.txt
Expand Up @@ -33,6 +33,7 @@ qcom Qualcomm, Inc.
ramtron Ramtron International
samsung Samsung Semiconductor
schindler Schindler
sil Silicon Image
simtek
sirf SiRF Technology, Inc.
stericsson ST-Ericsson
Expand Down
2 changes: 2 additions & 0 deletions drivers/of/irq.c
Expand Up @@ -424,6 +424,8 @@ void __init of_irq_init(const struct of_device_id *matches)

desc->dev = np;
desc->interrupt_parent = of_irq_find_parent(np);
if (desc->interrupt_parent == np)
desc->interrupt_parent = NULL;
list_add_tail(&desc->list, &intc_desc_list);
}

Expand Down

0 comments on commit c290b2f

Please sign in to comment.