From: Len Brown <lenb@kernel.org>
To: akpm@osdl.org
Cc: linux-acpi@vger.kernel.org, bunk@stusta.de
Subject: Re: [patch 18/19] ACPI: make code static
Date: Wed, 20 Dec 2006 17:20:37 -0500 [thread overview]
Message-ID: <200612201720.37216.lenb@kernel.org> (raw)
In-Reply-To: <200612201702.46156.lenb@kernel.org>
On Wednesday 20 December 2006 17:02, Len Brown wrote:
> Applied.
Wups, had to NAK the acpi_pci_bind part...
drivers/acpi/pci_root.c: In function ‘acpi_pci_root_add’:
drivers/acpi/pci_root.c:181: error: ‘acpi_pci_bind’ undeclared (first use in this function)
drivers/acpi/pci_root.c:181: error: (Each undeclared identifier is reported only once
drivers/acpi/pci_root.c:181: error: for each function it appears in.)
make[2]: *** [drivers/acpi/pci_root.o] Error 1
make[2]: *** Waiting for unfinished jobs....
LD drivers/pnp/pnpacpi/built-in.o
LD drivers/pnp/built-in.o
drivers/acpi/pci_bind.c: In function ‘acpi_pci_bind’:
drivers/acpi/pci_bind.c:225: error: ‘acpi_pci_unbind’ undeclared (first use in this function)
drivers/acpi/pci_bind.c:225: error: (Each undeclared identifier is reported only once
drivers/acpi/pci_bind.c:225: error: for each function it appears in.)
make[2]: *** [drivers/acpi/pci_bind.o] Error 1
Leaving that below.
thanks,
-Len
commit 9e0ed41e9aff61648e2261ab334fb5eea3d5aeb3
Author: Adrian Bunk <bunk@stusta.de>
Date: Tue Dec 19 12:56:24 2006 -0800
ACPI: make code static
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Len Brown <len.brown@intel.com>
diff --git a/drivers/acpi/bus.c b/drivers/acpi/bus.c
index 279c4ba..555bf00 100644
--- a/drivers/acpi/bus.c
+++ b/drivers/acpi/bus.c
@@ -728,7 +728,7 @@ static int __init acpi_bus_init(void)
return -ENODEV;
}
-decl_subsys(acpi, NULL, NULL);
+static decl_subsys(acpi, NULL, NULL);
static int __init acpi_init(void)
{
diff --git a/drivers/acpi/dock.c b/drivers/acpi/dock.c
index 90990a4..a66b4c7 100644
--- a/drivers/acpi/dock.c
+++ b/drivers/acpi/dock.c
@@ -641,7 +641,7 @@ static ssize_t show_docked(struct device *dev,
return snprintf(buf, PAGE_SIZE, "%d\n", dock_present(dock_station));
}
-DEVICE_ATTR(docked, S_IRUGO, show_docked, NULL);
+static DEVICE_ATTR(docked, S_IRUGO, show_docked, NULL);
/*
* write_undock - write method for "undock" file in sysfs
@@ -657,7 +657,7 @@ static ssize_t write_undock(struct device *dev, struct device_attribute *attr,
ret = handle_eject_request(dock_station, ACPI_NOTIFY_EJECT_REQUEST);
return ret ? ret: count;
}
-DEVICE_ATTR(undock, S_IWUSR, NULL, write_undock);
+static DEVICE_ATTR(undock, S_IWUSR, NULL, write_undock);
/**
* dock_add - add a new dock station
diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h
index fdd1095..cefe952 100644
--- a/include/acpi/acpi_bus.h
+++ b/include/acpi/acpi_bus.h
@@ -315,8 +315,6 @@ struct acpi_bus_event {
u32 data;
};
-extern struct subsystem acpi_subsys;
-
/*
* External Functions
*/
-
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:[~2006-12-20 22:27 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-12-19 20:56 [patch 18/19] ACPI: make code static akpm
2006-12-20 22:02 ` Len Brown
2006-12-20 22:20 ` 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=200612201720.37216.lenb@kernel.org \
--to=lenb@kernel.org \
--cc=akpm@osdl.org \
--cc=bunk@stusta.de \
--cc=linux-acpi@vger.kernel.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.