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
Kirill Smelkov
linux
Commits
3d26678e
Commit
3d26678e
authored
Mar 23, 2011
by
Len Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'sysdev' into release
parents
02e24078
c3146df2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
29 deletions
+8
-29
drivers/acpi/ec_sys.c
drivers/acpi/ec_sys.c
+0
-4
drivers/acpi/internal.h
drivers/acpi/internal.h
+0
-3
drivers/acpi/pci_link.c
drivers/acpi/pci_link.c
+8
-22
No files found.
drivers/acpi/ec_sys.c
View file @
3d26678e
...
...
@@ -24,10 +24,6 @@ MODULE_PARM_DESC(write_support, "Dangerous, reboot and removal of battery may "
#define EC_SPACE_SIZE 256
struct
sysdev_class
acpi_ec_sysdev_class
=
{
.
name
=
"ec"
,
};
static
struct
dentry
*
acpi_ec_debugfs_dir
;
static
int
acpi_ec_open_io
(
struct
inode
*
i
,
struct
file
*
f
)
...
...
drivers/acpi/internal.h
View file @
3d26678e
...
...
@@ -21,8 +21,6 @@
#ifndef _ACPI_INTERNAL_H_
#define _ACPI_INTERNAL_H_
#include <linux/sysdev.h>
#define PREFIX "ACPI: "
int
init_acpi_device_notify
(
void
);
...
...
@@ -64,7 +62,6 @@ struct acpi_ec {
struct
list_head
list
;
struct
transaction
*
curr
;
spinlock_t
curr_lock
;
struct
sys_device
sysdev
;
};
extern
struct
acpi_ec
*
first_ec
;
...
...
drivers/acpi/pci_link.c
View file @
3d26678e
...
...
@@ -29,7 +29,7 @@
* for IRQ management (e.g. start()->_SRS).
*/
#include <linux/sys
dev
.h>
#include <linux/sys
core_ops
.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
...
...
@@ -757,14 +757,13 @@ static int acpi_pci_link_resume(struct acpi_pci_link *link)
return
0
;
}
static
int
irqrouter_resume
(
struct
sys_device
*
dev
)
static
void
irqrouter_resume
(
void
)
{
struct
acpi_pci_link
*
link
;
list_for_each_entry
(
link
,
&
acpi_link_list
,
list
)
{
acpi_pci_link_resume
(
link
);
}
return
0
;
}
static
int
acpi_pci_link_remove
(
struct
acpi_device
*
device
,
int
type
)
...
...
@@ -871,32 +870,19 @@ static int __init acpi_irq_balance_set(char *str)
__setup
(
"acpi_irq_balance"
,
acpi_irq_balance_set
);
/* FIXME: we will remove this interface after all drivers call pci_disable_device */
static
struct
sysdev_class
irqrouter_sysdev_class
=
{
.
name
=
"irqrouter"
,
static
struct
syscore_ops
irqrouter_syscore_ops
=
{
.
resume
=
irqrouter_resume
,
};
static
struct
sys_device
device_irqrouter
=
{
.
id
=
0
,
.
cls
=
&
irqrouter_sysdev_class
,
};
static
int
__init
irqrouter_init_sysfs
(
void
)
static
int
__init
irqrouter_init_ops
(
void
)
{
int
error
;
if
(
!
acpi_disabled
&&
!
acpi_noirq
)
register_syscore_ops
(
&
irqrouter_syscore_ops
);
if
(
acpi_disabled
||
acpi_noirq
)
return
0
;
error
=
sysdev_class_register
(
&
irqrouter_sysdev_class
);
if
(
!
error
)
error
=
sysdev_register
(
&
device_irqrouter
);
return
error
;
return
0
;
}
device_initcall
(
irqrouter_init_
sysf
s
);
device_initcall
(
irqrouter_init_
op
s
);
static
int
__init
acpi_pci_link_init
(
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