From: Len Brown <lenb@kernel.org>
To: "Toralf Förster" <toralf.foerster@gmx.de>
Cc: linux-acpi@vger.kernel.org
Subject: Re: build #313 failed for 2.6.23-rc5-gb21010e in linux/drivers/acpi/event.c
Date: Thu, 6 Sep 2007 06:30:01 -0400 [thread overview]
Message-ID: <200709060630.01925.lenb@kernel.org> (raw)
In-Reply-To: <200709061051.30497.toralf.foerster@gmx.de>
On Thursday 06 September 2007 04:51, Toralf Förster wrote:
> Hello,
>
> the build with the attached .config failed, make ends with:
> ...
> CC drivers/acpi/pci_root.o
> CC drivers/acpi/pci_link.o
> CC drivers/acpi/pci_irq.o
> CC drivers/acpi/pci_bind.o
> CC drivers/acpi/power.o
> CC drivers/acpi/system.o
> CC drivers/acpi/event.o
> drivers/acpi/event.c:243: error: 'acpi_generate_netlink_event' undeclared here (not in a function)
> drivers/acpi/event.c:243: warning: type defaults to 'int' in declaration of 'acpi_generate_netlink_event'
> make[2]: *** [drivers/acpi/event.o] Error 1
> make[1]: *** [drivers/acpi] Error 2
> make: *** [drivers] Error 2
>
> The build was made with :
> $> make mrproper && make rndconfig && <tweak config file> && make oldconfig && make
This is due to CONFIG_NET=n, which Henrique fixed last week
and will be in -rc6.
thanks,
-Len
commit 66baf327ae5d4c17e75d1f501145e79eaeeaf649
Author: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
Date: Mon Sep 3 00:03:35 2007 -0300
ACPI: fix CONFIG_NET=n acpi_bus_generate_netlink_event build failure
drivers/acpi/event.c:243: error: 'acpi_generate_netlink_event' undeclared
here (not in a function)
Signed-off-by: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
Signed-off-by: Len Brown <len.brown@intel.com>
diff --git a/drivers/acpi/event.c b/drivers/acpi/event.c
index a2b9304..5c95863 100644
--- a/drivers/acpi/event.c
+++ b/drivers/acpi/event.c
@@ -240,7 +240,7 @@ int acpi_bus_generate_netlink_event(const char *device_class,
return 0;
}
-EXPORT_SYMBOL(acpi_generate_netlink_event);
+EXPORT_SYMBOL(acpi_bus_generate_netlink_event);
static int acpi_event_genetlink_init(void)
{
-
To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
prev parent reply other threads:[~2007-09-06 10:56 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-09-06 8:51 build #313 failed for 2.6.23-rc5-gb21010e in linux/drivers/acpi/event.c Toralf Förster
2007-09-06 10:30 ` Len Brown [this message]
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=200709060630.01925.lenb@kernel.org \
--to=lenb@kernel.org \
--cc=linux-acpi@vger.kernel.org \
--cc=toralf.foerster@gmx.de \
/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.