Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
White Rabbit Switch - Software
Manage
Activity
Members
Labels
Plan
Issues
85
Issue boards
Milestones
Wiki
Code
Merge requests
4
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
White Rabbit Switch - Software
Commits
2e38b626
Commit
2e38b626
authored
14 years ago
by
Alessandro Rubini
Browse files
Options
Downloads
Patches
Plain Diff
patches/2.6.35: export symbols needed fro irq_chip
parent
3685e270
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
patches/2.6.35/0007-IRQ-export-two-symbols-needed-by-external-irq_chip.patch
+37
-0
37 additions, 0 deletions
...-IRQ-export-two-symbols-needed-by-external-irq_chip.patch
with
37 additions
and
0 deletions
patches/2.6.35/0007-IRQ-export-two-symbols-needed-by-external-irq_chip.patch
0 → 100644
+
37
−
0
View file @
2e38b626
From f4ea42c0afc36348ad45e6cf1198773c2222da86 Mon Sep 17 00:00:00 2001
From: Alessandro Rubini <rubini@gnudd.com>
Date: Mon, 22 Nov 2010 15:56:36 +0100
Subject: [PATCH] IRQ: export two symbols needed by external irq_chip
---
arch/arm/kernel/irq.c | 1 +
kernel/irq/handle.c | 1 +
2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/arch/arm/kernel/irq.c b/arch/arm/kernel/irq.c
index 3b3d2c8..bd57e41 100644
--- a/arch/arm/kernel/irq.c
+++ b/arch/arm/kernel/irq.c
@@ -148,6 +148,7 @@
void set_irq_flags(unsigned int irq, unsigned int iflags)
desc->status &= ~IRQ_NOAUTOEN;
raw_spin_unlock_irqrestore(&desc->lock, flags);
}
+EXPORT_SYMBOL_GPL(set_irq_flags); /* Temporary: needed for WRVIC */
void __init init_IRQ(void)
{
diff --git a/kernel/irq/handle.c b/kernel/irq/handle.c
index 27e5c69..49e7565 100644
--- a/kernel/irq/handle.c
+++ b/kernel/irq/handle.c
@@ -276,6 +276,7 @@
struct irq_desc *irq_to_desc(unsigned int irq)
{
return (irq < NR_IRQS) ? irq_desc + irq : NULL;
}
+EXPORT_SYMBOL_GPL(irq_to_desc); /* Temporary: needed for WRVIC */
struct irq_desc *irq_to_desc_alloc_node(unsigned int irq, int node)
{
--
1.5.6.5
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment