* [PATCH] isdn/sc: compile breakage re check_reset()
@ 2007-07-17 10:33 Alexey Dobriyan
2007-07-18 20:15 ` Andrew Morton
0 siblings, 1 reply; 3+ messages in thread
From: Alexey Dobriyan @ 2007-07-17 10:33 UTC (permalink / raw)
To: akpm; +Cc: linux-kernel
There is check_reset() -- global function in drivers/isdn/sc/
There is check_reset -- variable holding module param in aacraid driver.
On allyesconfig they clash with:
LD drivers/built-in.o
drivers/isdn/built-in.o: In function `check_reset':
: multiple definition of `check_reset'
drivers/scsi/built-in.o:(.data+0xe458): first defined here
ld: Warning: size of symbol `check_reset' changed from 4 in drivers/scsi/built-in.o to 219 in drivers/isdn/built-in.o
ld: Warning: type of symbol `check_reset' changed from 1 to 2 in drivers/isdn/built-in.o
Rename the former.
Signed-off-by: Alexey Dobriyan <adobriyan@sw.ru>
---
drivers/isdn/sc/card.h | 2 +-
drivers/isdn/sc/command.c | 2 +-
drivers/isdn/sc/timer.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
--- a/drivers/isdn/sc/card.h
+++ b/drivers/isdn/sc/card.h
@@ -125,7 +125,7 @@ int sendmessage(int card, unsigned int procid, unsigned int type,
int receivemessage(int card, RspMessage *rspmsg);
int sc_ioctl(int card, scs_ioctl *data);
int setup_buffers(int card, int c);
-void check_reset(unsigned long data);
+void sc_check_reset(unsigned long data);
void check_phystat(unsigned long data);
#endif /* CARD_H */
--- a/drivers/isdn/sc/command.c
+++ b/drivers/isdn/sc/command.c
@@ -344,7 +344,7 @@ int reset(int card)
spin_lock_irqsave(&sc_adapter[card]->lock, flags);
init_timer(&sc_adapter[card]->reset_timer);
- sc_adapter[card]->reset_timer.function = check_reset;
+ sc_adapter[card]->reset_timer.function = sc_check_reset;
sc_adapter[card]->reset_timer.data = card;
sc_adapter[card]->reset_timer.expires = jiffies + CHECKRESET_TIME;
add_timer(&sc_adapter[card]->reset_timer);
--- a/drivers/isdn/sc/timer.c
+++ b/drivers/isdn/sc/timer.c
@@ -43,7 +43,7 @@ static void setup_ports(int card)
* Then, check to see if the signate has been set. Next, set the
* signature to a known value and issue a startproc if needed.
*/
-void check_reset(unsigned long data)
+void sc_check_reset(unsigned long data)
{
unsigned long flags;
unsigned long sig;
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] isdn/sc: compile breakage re check_reset()
2007-07-17 10:33 [PATCH] isdn/sc: compile breakage re check_reset() Alexey Dobriyan
@ 2007-07-18 20:15 ` Andrew Morton
0 siblings, 0 replies; 3+ messages in thread
From: Andrew Morton @ 2007-07-18 20:15 UTC (permalink / raw)
To: Alexey Dobriyan; +Cc: linux-kernel
On Tue, 17 Jul 2007 14:33:43 +0400
Alexey Dobriyan <adobriyan@sw.ru> wrote:
> There is check_reset() -- global function in drivers/isdn/sc/
> There is check_reset -- variable holding module param in aacraid driver.
>
> On allyesconfig they clash with:
>
> LD drivers/built-in.o
> drivers/isdn/built-in.o: In function `check_reset':
> : multiple definition of `check_reset'
> drivers/scsi/built-in.o:(.data+0xe458): first defined here
> ld: Warning: size of symbol `check_reset' changed from 4 in drivers/scsi/built-in.o to 219 in drivers/isdn/built-in.o
> ld: Warning: type of symbol `check_reset' changed from 1 to 2 in drivers/isdn/built-in.o
>
> Rename the former.
yeah, well, I did aacraid-rename-check_reset.patch last month, but scsi
patches are hard to get rid of.
Both patches are needed: check_reset() is a dopey name.
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] isdn/sc: compile breakage re check_reset()
@ 2007-07-17 10:18 Alexey Dobriyan
0 siblings, 0 replies; 3+ messages in thread
From: Alexey Dobriyan @ 2007-07-17 10:18 UTC (permalink / raw)
To: akpm; +Cc: linux-kernel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-07-18 20:16 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-17 10:33 [PATCH] isdn/sc: compile breakage re check_reset() Alexey Dobriyan
2007-07-18 20:15 ` Andrew Morton
-- strict thread matches above, loose matches on Subject: below --
2007-07-17 10:18 Alexey Dobriyan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox