Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 71940
b: refs/heads/master
c: a99bbcc
h: refs/heads/master
v: v3
  • Loading branch information
Mike Frysinger authored and Bryan Wu committed Oct 21, 2007
1 parent 79ddff2 commit 6e7d252
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 876a6682aac9b22cf24e0a3a7fea648fd64e112b
refs/heads/master: a99bbccd8738c0d8df270391284db2fae28d8a82
8 changes: 7 additions & 1 deletion trunk/arch/blackfin/mach-common/ints-priority-dc.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,13 @@
* -
*/

unsigned long irq_flags = 0;
/* Initialize this to an actual value to force it into the .data
* section so that we know it is properly initialized at entry into
* the kernel but before bss is initialized to zero (which is where
* it would live otherwise). The 0x1f magic represents the IRQs we
* cannot actually mask out in hardware.
*/
unsigned long irq_flags = 0x1f;

/* The number of spurious interrupts */
atomic_t num_spurious;
Expand Down
8 changes: 7 additions & 1 deletion trunk/arch/blackfin/mach-common/ints-priority-sc.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,13 @@
* -
*/

unsigned long irq_flags = 0;
/* Initialize this to an actual value to force it into the .data
* section so that we know it is properly initialized at entry into
* the kernel but before bss is initialized to zero (which is where
* it would live otherwise). The 0x1f magic represents the IRQs we
* cannot actually mask out in hardware.
*/
unsigned long irq_flags = 0x1f;

/* The number of spurious interrupts */
atomic_t num_spurious;
Expand Down

0 comments on commit 6e7d252

Please sign in to comment.