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
6d1f23f2
Commit
6d1f23f2
authored
Jan 12, 2011
by
Len Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'pnp' into release
parents
633379a0
cdefba03
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
14 deletions
+13
-14
drivers/pnp/Makefile
drivers/pnp/Makefile
+4
-2
drivers/pnp/core.c
drivers/pnp/core.c
+1
-6
drivers/pnp/isapnp/Makefile
drivers/pnp/isapnp/Makefile
+3
-3
drivers/pnp/pnpacpi/Makefile
drivers/pnp/pnpacpi/Makefile
+2
-1
drivers/pnp/pnpbios/Makefile
drivers/pnp/pnpbios/Makefile
+3
-2
No files found.
drivers/pnp/Makefile
View file @
6d1f23f2
...
@@ -2,11 +2,13 @@
...
@@ -2,11 +2,13 @@
# Makefile for the Linux Plug-and-Play Support.
# Makefile for the Linux Plug-and-Play Support.
#
#
obj-y
:=
core.o card.o driver.o resource.o manager.o support.o interface.o quirks.o
obj-y
:=
pnp.o
pnp-y
:=
core.o card.o driver.o resource.o manager.o support.o interface.o quirks.o
obj-$(CONFIG_PNPACPI)
+=
pnpacpi/
obj-$(CONFIG_PNPACPI)
+=
pnpacpi/
obj-$(CONFIG_PNPBIOS)
+=
pnpbios/
obj-$(CONFIG_PNPBIOS)
+=
pnpbios/
obj-$(CONFIG_ISAPNP)
+=
isapnp/
obj-$(CONFIG_ISAPNP)
+=
isapnp/
# pnp_system_init goes after pnpacpi/pnpbios init
# pnp_system_init goes after pnpacpi/pnpbios init
obj
-y
+=
system.o
pnp
-y
+=
system.o
drivers/pnp/core.c
View file @
6d1f23f2
...
@@ -220,10 +220,5 @@ subsys_initcall(pnp_init);
...
@@ -220,10 +220,5 @@ subsys_initcall(pnp_init);
int
pnp_debug
;
int
pnp_debug
;
#if defined(CONFIG_PNP_DEBUG_MESSAGES)
#if defined(CONFIG_PNP_DEBUG_MESSAGES)
static
int
__init
pnp_debug_setup
(
char
*
__unused
)
module_param_named
(
debug
,
pnp_debug
,
int
,
0644
);
{
pnp_debug
=
1
;
return
1
;
}
__setup
(
"pnp.debug"
,
pnp_debug_setup
);
#endif
#endif
drivers/pnp/isapnp/Makefile
View file @
6d1f23f2
#
#
# Makefile for the kernel ISAPNP driver.
# Makefile for the kernel ISAPNP driver.
#
#
obj-y
+=
pnp.o
pnp-y
:=
core.o compat.o
isapnp-proc-$(CONFIG_PROC_FS)
=
proc.o
pnp-$(CONFIG_PROC_FS)
+=
proc.o
obj-y
:=
core.o compat.o
$
(
isapnp-proc-y
)
drivers/pnp/pnpacpi/Makefile
View file @
6d1f23f2
#
#
# Makefile for the kernel PNPACPI driver.
# Makefile for the kernel PNPACPI driver.
#
#
obj-y
+=
pnp.o
obj
-y
:=
core.o rsparser.o
pnp
-y
:=
core.o rsparser.o
drivers/pnp/pnpbios/Makefile
View file @
6d1f23f2
#
#
# Makefile for the kernel PNPBIOS driver.
# Makefile for the kernel PNPBIOS driver.
#
#
obj-y
:=
pnp.o
pnp
bios-proc-$(CONFIG_PNPBIOS_PROC_FS)
=
proc
.o
pnp
-y
:=
core.o bioscalls.o rsparser
.o
obj-y
:=
core.o bioscalls.o rsparser.o
$
(
pnpbios-proc-y
)
pnp-$(CONFIG_PNPBIOS_PROC_FS)
+=
proc.o
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