public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Adrian Bunk <bunk@stusta.de>
To: Andrew Morton <akpm@osdl.org>
Cc: pavel@suse.cz, linux-kernel@vger.kernel.org
Subject: [2.6 patch] kernel/power/pm.c: make pm_send static
Date: Wed, 2 Mar 2005 16:15:20 +0100	[thread overview]
Message-ID: <20050302151520.GE4608@stusta.de> (raw)

pm_send is deprecated and has no user except for the deprecated 
pm_send_all in the same file.

Let's make pm_send static before someone might use it again.

This patch was already ACK'ed by Pavel Machek.

Signed-off-by: Adrian Bunk <bunk@stusta.de>

---

This patch was already sent on:
- 24 Feb 2005

 Documentation/pm.txt |   17 -----------------
 include/linux/pm.h   |   10 ----------
 kernel/power/pm.c    |    2 +-
 3 files changed, 1 insertion(+), 28 deletions(-)

--- linux-2.6.11-rc4-mm1-full/Documentation/pm.txt.old	2005-02-24 01:17:43.000000000 +0100
+++ linux-2.6.11-rc4-mm1-full/Documentation/pm.txt	2005-02-24 01:17:59.000000000 +0100
@@ -222,23 +222,6 @@
 management interface.
 
 /*
- * Send a request to a single device
- *
- * Parameters:
- *   dev - PM device previously returned from pm_register or pm_find
- *   rqst - request type
- *   data - data, if any, associated with the request
- *
- * Returns: 0 if the request is successful
- *          See "pm_callback" return for errors
- *
- * Details: Forward request to device callback and, if a suspend
- *          or resume request, update the pm_dev "state" field
- *          appropriately
- */
-int pm_send(struct pm_dev *dev, pm_request_t rqst, void *data);
-
-/*
  * Send a request to all devices
  *
  * Parameters:
--- linux-2.6.11-rc4-mm1-full/include/linux/pm.h.old	2005-02-24 01:18:17.000000000 +0100
+++ linux-2.6.11-rc4-mm1-full/include/linux/pm.h	2005-02-24 01:18:35.000000000 +0100
@@ -116,11 +116,6 @@
 void __deprecated 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);
-
-/*
  * Send a request to all devices
  */
 int __deprecated pm_send_all(pm_request_t rqst, void *data);
@@ -140,11 +135,6 @@
 
 static inline void pm_unregister_all(pm_callback callback) {}
 
-static inline int pm_send(struct pm_dev *dev, pm_request_t rqst, void *data)
-{
-	return 0;
-}
-
 static inline int pm_send_all(pm_request_t rqst, void *data)
 {
 	return 0;
--- linux-2.6.11-rc4-mm1-full/kernel/power/pm.c.old	2005-02-24 01:18:43.000000000 +0100
+++ linux-2.6.11-rc4-mm1-full/kernel/power/pm.c	2005-02-24 01:19:04.000000000 +0100
@@ -151,7 +151,7 @@
  *	execution and unload yourself.
  */
  
-int pm_send(struct pm_dev *dev, pm_request_t rqst, void *data)
+static int pm_send(struct pm_dev *dev, pm_request_t rqst, void *data)
 {
 	int status = 0;
 	unsigned long prev_state, next_state;


             reply	other threads:[~2005-03-02 15:15 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-03-02 15:15 Adrian Bunk [this message]
  -- strict thread matches above, loose matches on Subject: below --
2005-02-24 11:11 [2.6 patch] kernel/power/pm.c: make pm_send static Adrian Bunk

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20050302151520.GE4608@stusta.de \
    --to=bunk@stusta.de \
    --cc=akpm@osdl.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pavel@suse.cz \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox