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
861976f2
Commit
861976f2
authored
Jul 13, 2003
by
Andy Grover
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ACPI: proc function return value cleanups (Andi Kleen)
parent
f2baad26
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
drivers/acpi/processor.c
drivers/acpi/processor.c
+2
-2
drivers/acpi/thermal.c
drivers/acpi/thermal.c
+6
-6
No files found.
drivers/acpi/processor.c
View file @
861976f2
...
...
@@ -1351,7 +1351,7 @@ static int acpi_processor_throttling_open_fs(struct inode *inode, struct file *f
PDE
(
inode
)
->
data
);
}
static
in
t
static
ssize_
t
acpi_processor_write_throttling
(
struct
file
*
file
,
const
char
*
buffer
,
...
...
@@ -1414,7 +1414,7 @@ static int acpi_processor_limit_open_fs(struct inode *inode, struct file *file)
PDE
(
inode
)
->
data
);
}
static
in
t
static
ssize_
t
acpi_processor_write_limit
(
struct
file
*
file
,
const
char
*
buffer
,
...
...
drivers/acpi/thermal.c
View file @
861976f2
...
...
@@ -84,11 +84,11 @@ static int acpi_thermal_remove (struct acpi_device *device, int type);
static
int
acpi_thermal_state_open_fs
(
struct
inode
*
inode
,
struct
file
*
file
);
static
int
acpi_thermal_temp_open_fs
(
struct
inode
*
inode
,
struct
file
*
file
);
static
int
acpi_thermal_trip_open_fs
(
struct
inode
*
inode
,
struct
file
*
file
);
static
in
t
acpi_thermal_write_trip_points
(
struct
file
*
,
const
char
*
,
size_t
,
loff_t
*
);
static
ssize_
t
acpi_thermal_write_trip_points
(
struct
file
*
,
const
char
*
,
size_t
,
loff_t
*
);
static
int
acpi_thermal_cooling_open_fs
(
struct
inode
*
inode
,
struct
file
*
file
);
static
in
t
acpi_thermal_write_cooling_mode
(
struct
file
*
,
const
char
*
,
size_t
,
loff_t
*
);
static
ssize_
t
acpi_thermal_write_cooling_mode
(
struct
file
*
,
const
char
*
,
size_t
,
loff_t
*
);
static
int
acpi_thermal_polling_open_fs
(
struct
inode
*
inode
,
struct
file
*
file
);
static
in
t
acpi_thermal_write_polling
(
struct
file
*
,
const
char
*
,
size_t
,
loff_t
*
);
static
ssize_
t
acpi_thermal_write_polling
(
struct
file
*
,
const
char
*
,
size_t
,
loff_t
*
);
static
struct
acpi_driver
acpi_thermal_driver
=
{
.
name
=
ACPI_THERMAL_DRIVER_NAME
,
...
...
@@ -881,7 +881,7 @@ static int acpi_thermal_trip_open_fs(struct inode *inode, struct file *file)
return
single_open
(
file
,
acpi_thermal_trip_seq_show
,
PDE
(
inode
)
->
data
);
}
static
in
t
static
ssize_
t
acpi_thermal_write_trip_points
(
struct
file
*
file
,
const
char
*
buffer
,
...
...
@@ -950,7 +950,7 @@ static int acpi_thermal_cooling_open_fs(struct inode *inode, struct file *file)
PDE
(
inode
)
->
data
);
}
static
in
t
static
ssize_
t
acpi_thermal_write_cooling_mode
(
struct
file
*
file
,
const
char
*
buffer
,
...
...
@@ -1011,7 +1011,7 @@ static int acpi_thermal_polling_open_fs(struct inode *inode, struct file *file)
PDE
(
inode
)
->
data
);
}
static
in
t
static
ssize_
t
acpi_thermal_write_polling
(
struct
file
*
file
,
const
char
*
buffer
,
...
...
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