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
9bbfa0fa
Commit
9bbfa0fa
authored
Jun 09, 2003
by
Patrick Mochel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[x86-64 i8259] Convert to use new system device API.
parent
bc2f37cc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
15 deletions
+11
-15
arch/x86_64/kernel/i8259.c
arch/x86_64/kernel/i8259.c
+11
-15
No files found.
arch/x86_64/kernel/i8259.c
View file @
9bbfa0fa
...
...
@@ -413,35 +413,31 @@ static void setup_timer(void)
outb
(
LATCH
>>
8
,
0x40
);
/* MSB */
}
static
int
timer_resume
(
struct
device
*
dev
,
u32
level
)
static
int
timer_resume
(
struct
sys_device
*
dev
)
{
if
(
level
==
RESUME_POWER_ON
)
setup_timer
();
setup_timer
();
return
0
;
}
static
struct
device_driver
timer_driver
=
{
.
name
=
"timer"
,
.
bus
=
&
system_bus_type
,
static
struct
sysdev_class
timer_sysclass
=
{
set_kset_name
(
"timer"
),
.
resume
=
timer_resume
,
};
static
struct
sys_device
device_timer
=
{
.
name
=
"timer"
,
.
id
=
0
,
.
dev
=
{
.
name
=
"timer"
,
.
driver
=
&
timer_driver
,
},
.
cls
&
timer_sysclass
,
};
static
int
__init
init_timer_
device
fs
(
void
)
static
int
__init
init_timer_
sys
fs
(
void
)
{
driver_register
(
&
timer_driver
);
return
sys_device_register
(
&
device_timer
);
int
error
=
sysdev_class_register
(
&
timer_sysclass
);
if
(
!
error
)
error
=
sys_device_register
(
&
device_timer
);
return
error
;
}
device_initcall
(
init_timer_
device
fs
);
device_initcall
(
init_timer_
sys
fs
);
void
__init
init_IRQ
(
void
)
{
...
...
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