Re: [PATCH 2/4] b43: make cordic common (LP-PHY and N-PHY need it)

2010-01-25 Thread Rafał Miłecki
2010/1/25 John W. Linville : > On Mon, Jan 25, 2010 at 07:53:19PM +0100, Michael Buesch wrote: >> On Monday 25 January 2010 19:36:27 Rafał Miłecki wrote: >> > W dniu 25 stycznia 2010 19:35 użytkownik Rafał Miłecki >> > napisał: >> > > 2010/1/25 Michael Buesch : >> > >> On Monday 25 January 2010 18

Re: [PATCH 2/4] b43: make cordic common (LP-PHY and N-PHY need it)

2010-01-25 Thread John W. Linville
On Mon, Jan 25, 2010 at 07:53:19PM +0100, Michael Buesch wrote: > On Monday 25 January 2010 19:36:27 Rafał Miłecki wrote: > > W dniu 25 stycznia 2010 19:35 użytkownik Rafał Miłecki > > napisał: > > > 2010/1/25 Michael Buesch : > > >> On Monday 25 January 2010 18:59:59 Rafał Miłecki wrote: > > >>>

Re: [PATCH 2/4] b43: make cordic common (LP-PHY and N-PHY need it)

2010-01-25 Thread Michael Buesch
On Monday 25 January 2010 19:36:27 Rafał Miłecki wrote: > W dniu 25 stycznia 2010 19:35 użytkownik Rafał Miłecki > napisał: > > 2010/1/25 Michael Buesch : > >> On Monday 25 January 2010 18:59:59 Rafał Miłecki wrote: > >>> +/* Complex number using 2 32-bit signed integers */ > >>> +typedef struct {

Re: [PATCH 2/4] b43: make cordic common (LP-PHY and N-PHY need it)

2010-01-25 Thread Rafał Miłecki
W dniu 25 stycznia 2010 19:35 użytkownik Rafał Miłecki napisał: > 2010/1/25 Michael Buesch : >> On Monday 25 January 2010 18:59:59 Rafał Miłecki wrote: >>> +/* Complex number using 2 32-bit signed integers */ >>> +typedef struct { s32 i, q; } b43_c32; >> >> No typedef. ever. > > Well, I just copie

Re: [PATCH 2/4] b43: make cordic common (LP-PHY and N-PHY need it)

2010-01-25 Thread Rafał Miłecki
2010/1/25 Michael Buesch : > On Monday 25 January 2010 18:59:59 Rafał Miłecki wrote: >> +/* Complex number using 2 32-bit signed integers */ >> +typedef struct { s32 i, q; } b43_c32; > > No typedef. ever. Well, I just copied (Gabor's?) code here. But of course I can fix this by the way, no problem

Re: [PATCH 2/4] b43: make cordic common (LP-PHY and N-PHY need it)

2010-01-25 Thread Michael Buesch
On Monday 25 January 2010 18:59:59 Rafał Miłecki wrote: > +/* Complex number using 2 32-bit signed integers */ > +typedef struct { s32 i, q; } b43_c32; No typedef. ever. -- Greetings, Michael. ___ Bcm43xx-dev mailing list Bcm43xx-dev@lists.berlios.de h

[PATCH 2/4] b43: make cordic common (LP-PHY and N-PHY need it)

2010-01-25 Thread Rafał Miłecki
Signed-off-by: Rafał Miłecki --- drivers/net/wireless/b43/phy_common.c | 38 +++ drivers/net/wireless/b43/phy_common.h |3 ++ drivers/net/wireless/b43/phy_lp.c | 45 +--- 3 files changed, 43 insertions(+), 43 deletions(-) diff --git