Re: EXPORT_SYMBOL generates "is deprecated" noise

2005-08-08 Thread Arnd Bergmann
On Sünndag 07 August 2005 20:26, Martin J. Bligh wrote: > Oh, I'm being an idiot and looking at the wrong tree. It's __deprecated, > but I still can't think of a clean way to locally undefine that for > just EXPORT_SYMBOL. We could in theory create a new EXPORT_SYMBOL variant that does not

Re: EXPORT_SYMBOL generates "is deprecated" noise

2005-08-08 Thread Denis Vlasenko
On Sunday 07 August 2005 22:15, Russell King wrote: > On Sun, Aug 07, 2005 at 11:07:59AM -0700, Martin J. Bligh wrote: > > I'm getting lots of errors like this nowadays: > > > > drivers/serial/8250.c:2651: warning: `register_serial' is deprecated > > (declared at drivers/serial/8250.c:2607) > >

Re: EXPORT_SYMBOL generates is deprecated noise

2005-08-08 Thread Denis Vlasenko
On Sunday 07 August 2005 22:15, Russell King wrote: On Sun, Aug 07, 2005 at 11:07:59AM -0700, Martin J. Bligh wrote: I'm getting lots of errors like this nowadays: drivers/serial/8250.c:2651: warning: `register_serial' is deprecated (declared at drivers/serial/8250.c:2607) Which is

Re: EXPORT_SYMBOL generates is deprecated noise

2005-08-08 Thread Arnd Bergmann
On Sünndag 07 August 2005 20:26, Martin J. Bligh wrote: Oh, I'm being an idiot and looking at the wrong tree. It's __deprecated, but I still can't think of a clean way to locally undefine that for just EXPORT_SYMBOL. We could in theory create a new EXPORT_SYMBOL variant that does not reference

Re: EXPORT_SYMBOL generates "is deprecated" noise

2005-08-07 Thread Russell King
On Sun, Aug 07, 2005 at 11:07:59AM -0700, Martin J. Bligh wrote: > I'm getting lots of errors like this nowadays: > > drivers/serial/8250.c:2651: warning: `register_serial' is deprecated > (declared at drivers/serial/8250.c:2607) > > Which is just: "EXPORT_SYMBOL(register_serial);" > > Sorry,

Re: EXPORT_SYMBOL generates "is deprecated" noise

2005-08-07 Thread Martin J. Bligh
>> If it's going to spout crap when I'm not even using the deprecated >> function, it's worse than useless, I'm afraid. >> ... > > It's reminding us that we are still offering a deprecated function. ;-) Might be useful as an option. But not to irritate every poor sod who does a kernel compile,

Re: EXPORT_SYMBOL generates "is deprecated" noise

2005-08-07 Thread Adrian Bunk
On Sun, Aug 07, 2005 at 11:55:16AM -0700, Martin J. Bligh wrote: > > > --Adrian Bunk <[EMAIL PROTECTED]> wrote (on Sunday, August 07, 2005 20:23:12 > +0200): > > > On Sun, Aug 07, 2005 at 11:07:59AM -0700, Martin J. Bligh wrote: > >> I'm getting lots of errors like this nowadays: > >> > >>

Re: EXPORT_SYMBOL generates "is deprecated" noise

2005-08-07 Thread Martin J. Bligh
--Adrian Bunk <[EMAIL PROTECTED]> wrote (on Sunday, August 07, 2005 20:23:12 +0200): > On Sun, Aug 07, 2005 at 11:07:59AM -0700, Martin J. Bligh wrote: >> I'm getting lots of errors like this nowadays: >> >> drivers/serial/8250.c:2651: warning: `register_serial' is deprecated >> (declared at

Re: EXPORT_SYMBOL generates "is deprecated" noise

2005-08-07 Thread Martin J. Bligh
--"Martin J. Bligh" <[EMAIL PROTECTED]> wrote (on Sunday, August 07, 2005 11:07:59 -0700): > I'm getting lots of errors like this nowadays: > > drivers/serial/8250.c:2651: warning: `register_serial' is deprecated > (declared at drivers/serial/8250.c:2607) > > Which is just:

Re: EXPORT_SYMBOL generates "is deprecated" noise

2005-08-07 Thread Adrian Bunk
On Sun, Aug 07, 2005 at 11:07:59AM -0700, Martin J. Bligh wrote: > I'm getting lots of errors like this nowadays: > > drivers/serial/8250.c:2651: warning: `register_serial' is deprecated > (declared at drivers/serial/8250.c:2607) > > Which is just: "EXPORT_SYMBOL(register_serial);" > > Sorry,

EXPORT_SYMBOL generates "is deprecated" noise

2005-08-07 Thread Martin J. Bligh
I'm getting lots of errors like this nowadays: drivers/serial/8250.c:2651: warning: `register_serial' is deprecated (declared at drivers/serial/8250.c:2607) Which is just: "EXPORT_SYMBOL(register_serial);" Sorry, but that's just compile-time noise, not anything useful. Warning on real usages

EXPORT_SYMBOL generates is deprecated noise

2005-08-07 Thread Martin J. Bligh
I'm getting lots of errors like this nowadays: drivers/serial/8250.c:2651: warning: `register_serial' is deprecated (declared at drivers/serial/8250.c:2607) Which is just: EXPORT_SYMBOL(register_serial); Sorry, but that's just compile-time noise, not anything useful. Warning on real usages of

Re: EXPORT_SYMBOL generates is deprecated noise

2005-08-07 Thread Adrian Bunk
On Sun, Aug 07, 2005 at 11:07:59AM -0700, Martin J. Bligh wrote: I'm getting lots of errors like this nowadays: drivers/serial/8250.c:2651: warning: `register_serial' is deprecated (declared at drivers/serial/8250.c:2607) Which is just: EXPORT_SYMBOL(register_serial); Sorry, but that's

Re: EXPORT_SYMBOL generates is deprecated noise

2005-08-07 Thread Martin J. Bligh
--Martin J. Bligh [EMAIL PROTECTED] wrote (on Sunday, August 07, 2005 11:07:59 -0700): I'm getting lots of errors like this nowadays: drivers/serial/8250.c:2651: warning: `register_serial' is deprecated (declared at drivers/serial/8250.c:2607) Which is just:

Re: EXPORT_SYMBOL generates is deprecated noise

2005-08-07 Thread Martin J. Bligh
--Adrian Bunk [EMAIL PROTECTED] wrote (on Sunday, August 07, 2005 20:23:12 +0200): On Sun, Aug 07, 2005 at 11:07:59AM -0700, Martin J. Bligh wrote: I'm getting lots of errors like this nowadays: drivers/serial/8250.c:2651: warning: `register_serial' is deprecated (declared at

Re: EXPORT_SYMBOL generates is deprecated noise

2005-08-07 Thread Adrian Bunk
On Sun, Aug 07, 2005 at 11:55:16AM -0700, Martin J. Bligh wrote: --Adrian Bunk [EMAIL PROTECTED] wrote (on Sunday, August 07, 2005 20:23:12 +0200): On Sun, Aug 07, 2005 at 11:07:59AM -0700, Martin J. Bligh wrote: I'm getting lots of errors like this nowadays:

Re: EXPORT_SYMBOL generates is deprecated noise

2005-08-07 Thread Martin J. Bligh
If it's going to spout crap when I'm not even using the deprecated function, it's worse than useless, I'm afraid. ... It's reminding us that we are still offering a deprecated function. ;-) Might be useful as an option. But not to irritate every poor sod who does a kernel compile, ever.

Re: EXPORT_SYMBOL generates is deprecated noise

2005-08-07 Thread Russell King
On Sun, Aug 07, 2005 at 11:07:59AM -0700, Martin J. Bligh wrote: I'm getting lots of errors like this nowadays: drivers/serial/8250.c:2651: warning: `register_serial' is deprecated (declared at drivers/serial/8250.c:2607) Which is just: EXPORT_SYMBOL(register_serial); Sorry, but that's