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
00ed8a2c
Commit
00ed8a2c
authored
Aug 14, 2003
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't add noisy "deprecated" things to PM.
parent
9508edb0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
include/linux/pm.h
include/linux/pm.h
+7
-7
No files found.
include/linux/pm.h
View file @
00ed8a2c
...
...
@@ -119,29 +119,29 @@ extern int pm_active;
/*
* Register a device with power management
*/
struct
pm_dev
__deprecated
*
pm_register
(
pm_dev_t
type
,
unsigned
long
id
,
pm_callback
callback
);
struct
pm_dev
*
pm_register
(
pm_dev_t
type
,
unsigned
long
id
,
pm_callback
callback
);
/*
* Unregister a device with power management
*/
void
__deprecated
pm_unregister
(
struct
pm_dev
*
dev
);
void
pm_unregister
(
struct
pm_dev
*
dev
);
/*
* Unregister all devices with matching callback
*/
void
__deprecated
pm_unregister_all
(
pm_callback
callback
);
void
pm_unregister_all
(
pm_callback
callback
);
/*
* Send a request to a single device
*/
int
__deprecated
pm_send
(
struct
pm_dev
*
dev
,
pm_request_t
rqst
,
void
*
data
);
int
pm_send
(
struct
pm_dev
*
dev
,
pm_request_t
rqst
,
void
*
data
);
/*
* Send a request to all devices
*/
int
__deprecated
pm_send_all
(
pm_request_t
rqst
,
void
*
data
);
int
pm_send_all
(
pm_request_t
rqst
,
void
*
data
);
/*
* Find a device
...
...
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