All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jesper Juhl <jesper.juhl@gmail.com>
To: linux-kernel@vger.kernel.org
Cc: Patrick Mochel <mochel@osdl.org>,
	Patrick Mochel <mochelp@infinity.powertie.org>,
	Jesper Juhl <jesper.juhl@gmail.com>
Subject: [PATCH] fix implicit function declarations in kernel/power/main.c
Date: Fri, 23 Jun 2006 00:07:59 +0200	[thread overview]
Message-ID: <200606230007.59183.jesper.juhl@gmail.com> (raw)


This patch fixes two warnings about implicitly declared functions
in kernel/power/main.c : 
  kernel/power/main.c: In function `suspend_prepare':
  kernel/power/main.c:89: warning: implicit declaration of function `suspend_console'
  kernel/power/main.c: In function `suspend_finish':
  kernel/power/main.c:137: warning: implicit declaration of function `resume_console'


Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
---

 kernel/power/main.c |    1 +
 1 files changed, 1 insertion(+)

--- linux-2.6.17-git4-orig/kernel/power/main.c	2006-06-22 23:45:28.000000000 +0200
+++ linux-2.6.17-git4/kernel/power/main.c	2006-06-23 00:01:04.000000000 +0200
@@ -10,6 +10,7 @@
 
 #include <linux/suspend.h>
 #include <linux/kobject.h>
+#include <linux/console.h>
 #include <linux/string.h>
 #include <linux/delay.h>
 #include <linux/errno.h>



                 reply	other threads:[~2006-06-22 22:06 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=200606230007.59183.jesper.juhl@gmail.com \
    --to=jesper.juhl@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mochel@osdl.org \
    --cc=mochelp@infinity.powertie.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.