From b1ea616682ab04d23da4d7b595cc09c3a674e469 Mon Sep 17 00:00:00 2001
From: Denys Vlasenko <dvlasenk@redhat.com>
To: linux-kernel@vger.kernel.org
Subject: [PATCH] drivers/gpio/gpio-f7188x.c: Deinline superio_exit, save 113 bytes

This function compiles to 50 bytes of machine code.

Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
---
 drivers/gpio/gpio-f7188x.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpio/gpio-f7188x.c b/drivers/gpio/gpio-f7188x.c
index 5e3c4fa..b6ddc14 100644
--- a/drivers/gpio/gpio-f7188x.c
+++ b/drivers/gpio/gpio-f7188x.c
@@ -112,7 +112,7 @@ static inline void superio_select(int base, int ld)
 	outb(ld, base + 1);
 }
 
-static inline void superio_exit(int base)
+static void superio_exit(int base)
 {
 	outb(SIO_LOCK_KEY, base);
 	release_region(base, 2);
-- 
2.1.0

