aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bcma/host_soc.c
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2012-08-05 16:54:41 +0200
committerJohn W. Linville <linville@tuxdriver.com>2012-08-10 15:26:52 -0400
commit94f3457f4da43a44f17789f3e0bc8fb2ee9593ca (patch)
tree27e0750109b8bfe27b5c97b2b3f3d170850d274a /drivers/bcma/host_soc.c
parentp54: parse output power table (diff)
downloadlinux-dev-94f3457f4da43a44f17789f3e0bc8fb2ee9593ca.tar.xz
linux-dev-94f3457f4da43a44f17789f3e0bc8fb2ee9593ca.zip
bcma: make some functions static
The functions and structs are not used in an other file and the prototypes are in no header file, just make them static so the compiler is able to optimize them better. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/bcma/host_soc.c')
-rw-r--r--drivers/bcma/host_soc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bcma/host_soc.c b/drivers/bcma/host_soc.c
index 3c381fb8f9c4..3475e600011a 100644
--- a/drivers/bcma/host_soc.c
+++ b/drivers/bcma/host_soc.c
@@ -143,7 +143,7 @@ static void bcma_host_soc_awrite32(struct bcma_device *core, u16 offset,
writel(value, core->io_wrap + offset);
}
-const struct bcma_host_ops bcma_host_soc_ops = {
+static const struct bcma_host_ops bcma_host_soc_ops = {
.read8 = bcma_host_soc_read8,
.read16 = bcma_host_soc_read16,
.read32 = bcma_host_soc_read32,