Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
linux
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Martyn Welch
linux
Commits
4fd23436
Commit
4fd23436
authored
16 years ago
by
Andi Kleen
Browse files
Options
Downloads
Plain Diff
Merge branches 'smbus' and 'fujitsu-fix' into release-2.6.27
parents
54cd3148
266feefe
d8196a93
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
drivers/acpi/sbshc.c
+7
-0
7 additions, 0 deletions
drivers/acpi/sbshc.c
drivers/misc/fujitsu-laptop.c
+7
-0
7 additions, 0 deletions
drivers/misc/fujitsu-laptop.c
with
14 additions
and
0 deletions
drivers/acpi/sbshc.c
+
7
−
0
View file @
4fd23436
...
...
@@ -107,6 +107,13 @@ static int wait_transaction_complete(struct acpi_smb_hc *hc, int timeout)
if
(
wait_event_timeout
(
hc
->
wait
,
smb_check_done
(
hc
),
msecs_to_jiffies
(
timeout
)))
return
0
;
/*
* After the timeout happens, OS will try to check the status of SMbus.
* If the status is what OS expected, it will be regarded as the bogus
* timeout.
*/
if
(
smb_check_done
(
hc
))
return
0
;
else
return
-
ETIME
;
}
...
...
This diff is collapsed.
Click to expand it.
drivers/misc/fujitsu-laptop.c
+
7
−
0
View file @
4fd23436
...
...
@@ -463,6 +463,13 @@ static struct dmi_system_id __initdata fujitsu_dmi_table[] = {
DMI_MATCH
(
DMI_PRODUCT_NAME
,
"LIFEBOOK S6410"
),
},
.
callback
=
dmi_check_cb_s6410
},
{
.
ident
=
"FUJITSU LifeBook P8010"
,
.
matches
=
{
DMI_MATCH
(
DMI_SYS_VENDOR
,
"FUJITSU"
),
DMI_MATCH
(
DMI_PRODUCT_NAME
,
"LifeBook P8010"
),
},
.
callback
=
dmi_check_cb_s6410
},
{}
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment