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
3fe2c413
Commit
3fe2c413
authored
May 06, 2002
by
Dave Jones
Committed by
Linus Torvalds
May 06, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] sonypi update
Syncs up with latest from Stelian
parent
77245680
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
10 deletions
+11
-10
Documentation/sonypi.txt
Documentation/sonypi.txt
+2
-2
drivers/char/sonypi.c
drivers/char/sonypi.c
+8
-7
drivers/char/sonypi.h
drivers/char/sonypi.h
+1
-1
No files found.
Documentation/sonypi.txt
View file @
3fe2c413
...
...
@@ -36,14 +36,14 @@ Please note that this driver was created by reverse engineering the Windows
driver and the ACPI BIOS, because Sony doesn't agree to release any programming
specs for its laptops. If someone convinces them to do so, drop me a note.
Module
options:
Driver
options:
---------------
Several options can be passed to the sonypi driver, either by adding them
to /etc/modules.conf file, when the driver is compiled as a module or by
adding the following to the kernel command line (in your bootloader):
sonypi=minor[
[[[[,camera],fnkeyinit],verbose],compat],nojogdial
]
sonypi=minor[
,verbose[,fnkeyinit[,camera[,compat[,nojogdial]]]]
]
where:
...
...
drivers/char/sonypi.c
View file @
3fe2c413
...
...
@@ -485,12 +485,10 @@ static int sonypi_misc_release(struct inode * inode, struct file * file) {
static
int
sonypi_misc_open
(
struct
inode
*
inode
,
struct
file
*
file
)
{
down
(
&
sonypi_device
.
lock
);
if
(
sonypi_device
.
open_count
)
goto
out
;
/* Flush input queue on first open */
if
(
!
sonypi_device
.
open_count
)
sonypi_initq
();
sonypi_device
.
open_count
++
;
/* Flush input queue */
sonypi_initq
();
out:
up
(
&
sonypi_device
.
lock
);
return
0
;
}
...
...
@@ -718,9 +716,12 @@ static int __devinit sonypi_probe(struct pci_dev *pcidev) {
SONYPI_DRIVER_MAJORVERSION
,
SONYPI_DRIVER_MINORVERSION
);
printk
(
KERN_INFO
"sonypi: detected %s model, "
"camera = %s, compat = %s, nojogdial = %s
\n
"
,
"verbose = %s, fnkeyinit = %s, camera = %s, "
"compat = %s, nojogdial = %s
\n
"
,
(
sonypi_device
.
model
==
SONYPI_DEVICE_MODEL_TYPE1
)
?
"type1"
:
"type2"
,
verbose
?
"on"
:
"off"
,
fnkeyinit
?
"on"
:
"off"
,
camera
?
"on"
:
"off"
,
compat
?
"on"
:
"off"
,
nojogdial
?
"on"
:
"off"
);
...
...
@@ -779,7 +780,7 @@ static void __exit sonypi_cleanup_module(void) {
#ifndef MODULE
static
int
__init
sonypi_setup
(
char
*
str
)
{
int
ints
[
6
];
int
ints
[
7
];
str
=
get_options
(
str
,
ARRAY_SIZE
(
ints
),
ints
);
if
(
ints
[
0
]
<=
0
)
...
...
drivers/char/sonypi.h
View file @
3fe2c413
...
...
@@ -35,7 +35,7 @@
#ifdef __KERNEL__
#define SONYPI_DRIVER_MAJORVERSION 1
#define SONYPI_DRIVER_MINORVERSION 1
1
#define SONYPI_DRIVER_MINORVERSION 1
3
#include <linux/types.h>
#include <linux/pci.h>
...
...
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