Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
28a065f2
Commit
28a065f2
authored
Sep 29, 2002
by
Russell King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ARM] Fix clps711x and ftvpci LEDs initialisation.
parent
53252275
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
arch/arm/mach-clps711x/p720t-leds.c
arch/arm/mach-clps711x/p720t-leds.c
+1
-1
arch/arm/mach-ftvpci/leds.c
arch/arm/mach-ftvpci/leds.c
+7
-2
No files found.
arch/arm/mach-clps711x/p720t-leds.c
View file @
28a065f2
...
@@ -64,4 +64,4 @@ static int __init leds_init(void)
...
@@ -64,4 +64,4 @@ static int __init leds_init(void)
return
0
;
return
0
;
}
}
_
_initcall
(
leds_init
);
arch
_initcall
(
leds_init
);
arch/arm/mach-ftvpci/leds.c
View file @
28a065f2
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
*/
*/
#include <linux/module.h>
#include <linux/module.h>
#include <linux/init.h>
#include <asm/hardware.h>
#include <asm/hardware.h>
#include <asm/leds.h>
#include <asm/leds.h>
...
@@ -26,6 +27,10 @@ static void ftvpci_leds_event(led_event_t ledevt)
...
@@ -26,6 +27,10 @@ static void ftvpci_leds_event(led_event_t ledevt)
}
}
}
}
void
(
*
leds_event
)(
led_event_t
)
=
ftvpci_leds_event
;
static
int
__init
ftvpci_leds_init
(
void
)
{
leds_event
=
ftvpci_leds_event
;
return
0
;
}
EXPORT_SYMBOL
(
leds_even
t
);
arch_initcall
(
ftvpci_leds_ini
t
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment