Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
63518472
Commit
63518472
authored
Jun 15, 2006
by
Len Brown
Browse files
Options
Browse Files
Download
Plain Diff
Pull trivial1 into release branch
parents
e44e20ff
e6f1f3c5
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
23 additions
and
39 deletions
+23
-39
drivers/acpi/asus_acpi.c
drivers/acpi/asus_acpi.c
+5
-5
drivers/acpi/processor_core.c
drivers/acpi/processor_core.c
+5
-5
drivers/acpi/scan.c
drivers/acpi/scan.c
+13
-23
drivers/acpi/sleep/wakeup.c
drivers/acpi/sleep/wakeup.c
+0
-3
include/asm-i386/apicdef.h
include/asm-i386/apicdef.h
+0
-1
include/asm-x86_64/apicdef.h
include/asm-x86_64/apicdef.h
+0
-2
No files found.
drivers/acpi/asus_acpi.c
View file @
63518472
...
...
@@ -817,7 +817,7 @@ typedef int (proc_writefunc) (struct file * file, const char __user * buffer,
unsigned
long
count
,
void
*
data
);
static
int
__init
asus_proc_add
(
char
*
name
,
proc_writefunc
*
writefunc
,
asus_proc_add
(
char
*
name
,
proc_writefunc
*
writefunc
,
proc_readfunc
*
readfunc
,
mode_t
mode
,
struct
acpi_device
*
device
)
{
...
...
@@ -836,7 +836,7 @@ __init asus_proc_add(char *name, proc_writefunc * writefunc,
return
0
;
}
static
int
__init
asus_hotk_add_fs
(
struct
acpi_device
*
device
)
static
int
asus_hotk_add_fs
(
struct
acpi_device
*
device
)
{
struct
proc_dir_entry
*
proc
;
mode_t
mode
;
...
...
@@ -954,7 +954,7 @@ static void asus_hotk_notify(acpi_handle handle, u32 event, void *data)
* This function is used to initialize the hotk with right values. In this
* method, we can make all the detection we want, and modify the hotk struct
*/
static
int
__init
asus_hotk_get_info
(
void
)
static
int
asus_hotk_get_info
(
void
)
{
struct
acpi_buffer
buffer
=
{
ACPI_ALLOCATE_BUFFER
,
NULL
};
struct
acpi_buffer
dsdt
=
{
ACPI_ALLOCATE_BUFFER
,
NULL
};
...
...
@@ -1101,7 +1101,7 @@ static int __init asus_hotk_get_info(void)
return
AE_OK
;
}
static
int
__init
asus_hotk_check
(
void
)
static
int
asus_hotk_check
(
void
)
{
int
result
=
0
;
...
...
@@ -1119,7 +1119,7 @@ static int __init asus_hotk_check(void)
return
result
;
}
static
int
__init
asus_hotk_add
(
struct
acpi_device
*
device
)
static
int
asus_hotk_add
(
struct
acpi_device
*
device
)
{
acpi_status
status
=
AE_OK
;
int
result
;
...
...
drivers/acpi/processor_core.c
View file @
63518472
...
...
@@ -388,7 +388,7 @@ static int acpi_processor_remove_fs(struct acpi_device *device)
/* Use the acpiid in MADT to map cpus in case of SMP */
#ifndef CONFIG_SMP
#define convert_acpiid_to_cpu(acpi_id) (
0xff
)
#define convert_acpiid_to_cpu(acpi_id) (
-1
)
#else
#ifdef CONFIG_IA64
...
...
@@ -401,7 +401,7 @@ static int acpi_processor_remove_fs(struct acpi_device *device)
#define ARCH_BAD_APICID (0xff)
#endif
static
u8
convert_acpiid_to_cpu
(
u8
acpi_id
)
static
int
convert_acpiid_to_cpu
(
u8
acpi_id
)
{
u16
apic_id
;
int
i
;
...
...
@@ -427,7 +427,7 @@ static int acpi_processor_get_info(struct acpi_processor *pr)
acpi_status
status
=
0
;
union
acpi_object
object
=
{
0
};
struct
acpi_buffer
buffer
=
{
sizeof
(
union
acpi_object
),
&
object
};
u8
cpu_index
;
int
cpu_index
;
static
int
cpu0_initialized
;
ACPI_FUNCTION_TRACE
(
"acpi_processor_get_info"
);
...
...
@@ -473,7 +473,7 @@ static int acpi_processor_get_info(struct acpi_processor *pr)
cpu_index
=
convert_acpiid_to_cpu
(
pr
->
acpi_id
);
/* Handle UP system running SMP kernel, with no LAPIC in MADT */
if
(
!
cpu0_initialized
&&
(
cpu_index
==
0xff
)
&&
if
(
!
cpu0_initialized
&&
(
cpu_index
==
-
1
)
&&
(
num_online_cpus
()
==
1
))
{
cpu_index
=
0
;
}
...
...
@@ -487,7 +487,7 @@ static int acpi_processor_get_info(struct acpi_processor *pr)
* less than the max # of CPUs. They should be ignored _iff
* they are physically not present.
*/
if
(
cpu_index
>=
NR_CPUS
)
{
if
(
cpu_index
==
-
1
)
{
if
(
ACPI_FAILURE
(
acpi_processor_hotadd_init
(
pr
->
handle
,
&
pr
->
id
)))
{
ACPI_DEBUG_PRINT
((
ACPI_DB_ERROR
,
...
...
drivers/acpi/scan.c
View file @
63518472
...
...
@@ -234,12 +234,9 @@ static int acpi_bus_get_power_flags(struct acpi_device *device)
int
acpi_match_ids
(
struct
acpi_device
*
device
,
char
*
ids
)
{
int
error
=
0
;
struct
acpi_buffer
buffer
=
{
ACPI_ALLOCATE_BUFFER
,
NULL
};
if
(
device
->
flags
.
hardware_id
)
if
(
strstr
(
ids
,
device
->
pnp
.
hardware_id
))
goto
Done
;
return
0
;
if
(
device
->
flags
.
compatible_ids
)
{
struct
acpi_compatible_id_list
*
cid_list
=
device
->
pnp
.
cid_list
;
...
...
@@ -248,15 +245,10 @@ int acpi_match_ids(struct acpi_device *device, char *ids)
/* compare multiple _CID entries against driver ids */
for
(
i
=
0
;
i
<
cid_list
->
count
;
i
++
)
{
if
(
strstr
(
ids
,
cid_list
->
id
[
i
].
value
))
goto
Done
;
return
0
;
}
}
error
=
-
ENOENT
;
Done:
if
(
buffer
.
pointer
)
acpi_os_free
(
buffer
.
pointer
);
return
error
;
return
-
ENOENT
;
}
static
acpi_status
...
...
@@ -642,21 +634,19 @@ EXPORT_SYMBOL(acpi_bus_register_driver);
*/
int
acpi_bus_unregister_driver
(
struct
acpi_driver
*
driver
)
{
int
error
=
0
;
ACPI_FUNCTION_TRACE
(
"acpi_bus_unregister_driver"
);
if
(
driver
)
{
acpi_driver_detach
(
driver
);
if
(
!
driver
)
return_VALUE
(
-
EINVAL
);
if
(
!
atomic_read
(
&
driver
->
references
))
{
spin_lock
(
&
acpi_device_lock
);
list_del_init
(
&
driver
->
node
);
spin_un
lock
(
&
acpi_device_lock
);
}
}
else
error
=
-
EINVAL
;
return_VALUE
(
error
);
acpi_driver_detach
(
driver
);
if
(
!
atomic_read
(
&
driver
->
references
))
{
spin_
lock
(
&
acpi_device_lock
);
list_del_init
(
&
driver
->
node
);
spin_unlock
(
&
acpi_device_lock
);
}
return_VALUE
(
0
);
}
EXPORT_SYMBOL
(
acpi_bus_unregister_driver
);
...
...
drivers/acpi/sleep/wakeup.c
View file @
63518472
...
...
@@ -155,7 +155,6 @@ static int __init acpi_wakeup_device_init(void)
if
(
acpi_disabled
)
return
0
;
printk
(
"ACPI wakeup devices:
\n
"
);
spin_lock
(
&
acpi_device_lock
);
list_for_each_safe
(
node
,
next
,
&
acpi_wakeup_device_list
)
{
...
...
@@ -174,10 +173,8 @@ static int __init acpi_wakeup_device_init(void)
dev
->
wakeup
.
state
.
enabled
=
1
;
spin_lock
(
&
acpi_device_lock
);
}
printk
(
"%4s "
,
dev
->
pnp
.
bus_id
);
}
spin_unlock
(
&
acpi_device_lock
);
printk
(
"
\n
"
);
return
0
;
}
...
...
include/asm-i386/apicdef.h
View file @
63518472
...
...
@@ -121,7 +121,6 @@
*/
#define u32 unsigned int
#define lapic ((volatile struct local_apic *)APIC_BASE)
struct
local_apic
{
...
...
include/asm-x86_64/apicdef.h
View file @
63518472
...
...
@@ -137,8 +137,6 @@
*/
#define u32 unsigned int
#define lapic ((volatile struct local_apic *)APIC_BASE)
struct
local_apic
{
/*000*/
struct
{
u32
__reserved
[
4
];
}
__reserved_01
;
...
...
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