Re: [U-Boot] [PATCH 6/8] lib: import bitrev library from linux kernel

2013-04-08 Thread Mike Dunn
On 04/07/2013 11:23 PM, Marek Vasut wrote: > Dear Mike Dunn, > >> This patch adds the bitrev library from the linux kernel. This is a simple >> algorithm that uses an 8 bit look-up table to reverse the bits in data >> types of 8, 16, or 32 bit widths. The docg4 nand flash driver uses it. >> >> S

Re: [U-Boot] [PATCH 6/8] lib: import bitrev library from linux kernel

2013-04-08 Thread Wolfgang Denk
Dear Mike Dunn, In message <1365352865-2137-7-git-send-email-miked...@newsguy.com> you wrote: > This patch adds the bitrev library from the linux kernel. This is a simple -^^ Please read bullet # 4 at http://www.denx.de/wiki/view/U-Boot/Pat

Re: [U-Boot] [PATCH 6/8] lib: import bitrev library from linux kernel

2013-04-07 Thread Marek Vasut
Dear Mike Dunn, > This patch adds the bitrev library from the linux kernel. This is a simple > algorithm that uses an 8 bit look-up table to reverse the bits in data > types of 8, 16, or 32 bit widths. The docg4 nand flash driver uses it. > > Signed-off-by: Mike Dunn > --- > include/linux/bit

[U-Boot] [PATCH 6/8] lib: import bitrev library from linux kernel

2013-04-07 Thread Mike Dunn
This patch adds the bitrev library from the linux kernel. This is a simple algorithm that uses an 8 bit look-up table to reverse the bits in data types of 8, 16, or 32 bit widths. The docg4 nand flash driver uses it. Signed-off-by: Mike Dunn --- include/linux/bitrev.h | 16 + lib