From 3016738bc716830608a526c0822d94f6bc964d00 Mon Sep 17 00:00:00 2001
From: "Adam J. Richter" <adam@yggdrasil.com>
Date: Thu, 12 Sep 2002 13:05:03 +0200
Subject: [PATCH] The following patch shaves a six bytes from the loaded size
 of pcspkr.o and another 90 elsewhere in the .o file.

---
 drivers/input/misc/pcspkr.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/input/misc/pcspkr.c b/drivers/input/misc/pcspkr.c
index 198fee230bdd..80b833d682ee 100644
--- a/drivers/input/misc/pcspkr.c
+++ b/drivers/input/misc/pcspkr.c
@@ -22,8 +22,8 @@ MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
 MODULE_DESCRIPTION("PC Speaker beeper driver");
 MODULE_LICENSE("GPL");
 
-static char *pcspkr_name = "PC Speaker";
-static char *pcspkr_phys = "isa0061/input0";
+static char pcspkr_name[] = "PC Speaker";
+static char pcspkr_phys[] = "isa0061/input0";
 static struct input_dev pcspkr_dev;
 
 spinlock_t i8253_beep_lock = SPIN_LOCK_UNLOCKED;
-- 
2.30.9