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
81b0a2f5
Commit
81b0a2f5
authored
Oct 17, 2002
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://ldm.bkbits.net/linux-2.5-core
into home.transmeta.com:/home/torvalds/v2.5/linux
parents
95c45597
a0424fb7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
drivers/base/bus.c
drivers/base/bus.c
+3
-2
No files found.
drivers/base/bus.c
View file @
81b0a2f5
...
...
@@ -96,7 +96,7 @@ static void attach(struct device * dev)
static
int
bus_match
(
struct
device
*
dev
,
struct
device_driver
*
drv
)
{
int
error
=
0
;
int
error
=
-
ENODEV
;
if
(
dev
->
bus
->
match
(
dev
,
drv
))
{
dev
->
driver
=
drv
;
if
(
drv
->
probe
)
{
...
...
@@ -104,7 +104,8 @@ static int bus_match(struct device * dev, struct device_driver * drv)
attach
(
dev
);
else
dev
->
driver
=
NULL
;
}
}
else
attach
(
dev
);
}
return
error
;
}
...
...
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