
Hi Tom,
Please pull this series.
thanks! Jagan.
The following changes since commit 96d59e9d6aa74e35c63dc74da10e41f8ba0f6de4:
mpc85xx/t2081: enable parsing DDR ratio for T2081 rev1.1 (2015-11-02 08:51:50 -0800)
are available in the git repository at:
git://git.denx.de/u-boot-spi.git next
for you to fetch changes up to e39e68f155b4fcd47f62ab2cf0e199d04f38446d:
sf: Add SPI NOR protection mechanism (2015-11-03 21:51:37 +0530)
---------------------------------------------------------------- Fabio Estevam (16): include: Add log2 header from the kernel include: Add generic bitops headers ARM: bitops: Use the generic bitops headers x86: bitops: Use the generic bitops headers m68k: bitops: Use the generic bitops headers blackfin: bitops: Use the generic bitops headers sh: bitops: Use the generic bitops headers sandbox: Use the generic bitops headers sparc: Use the generic bitops headers openrisc: Use the generic bitops headers nds32: Use the generic bitops headers nios2: Use the generic bitops headers compat: Remove is_power_of_2() definition powerpc: Remove __ilog2_u64 and ffs4 from bitops sf: Add SPI protection mechanism from the kernel sf: Add SPI NOR protection mechanism
arch/arm/include/asm/bitops.h | 5 + arch/arm/mach-mvebu/mbus.c | 2 +- arch/blackfin/include/asm/bitops.h | 4 + arch/m68k/include/asm/bitops.h | 4 + arch/microblaze/include/asm/bitops.h | 4 + arch/nds32/include/asm/bitops.h | 4 + arch/nios2/include/asm/bitops.h | 5 + arch/openrisc/include/asm/bitops.h | 4 + arch/powerpc/cpu/mpc83xx/law.c | 5 +- arch/powerpc/cpu/mpc85xx/tlb.c | 2 + arch/powerpc/cpu/mpc8xxx/law.c | 5 +- arch/powerpc/include/asm/bitops.h | 11 +- arch/powerpc/include/asm/fsl_law.h | 1 + arch/powerpc/include/asm/fsl_srio.h | 2 + arch/sandbox/include/asm/bitops.h | 4 + arch/sh/include/asm/bitops.h | 5 + arch/sparc/include/asm/bitops.h | 5 + arch/x86/include/asm/bitops.h | 21 +++- common/cmd_sf.c | 35 ++++++ drivers/mtd/mtdcore.c | 2 +- drivers/mtd/spi/sf_internal.h | 12 ++ drivers/mtd/spi/sf_ops.c | 180 ++++++++++++++++++++++++++++++ drivers/mtd/spi/sf_probe.c | 13 +++ drivers/mtd/ubi/build.c | 2 +- fs/ubifs/super.c | 2 +- include/asm-generic/bitops/__ffs.h | 43 ++++++++ include/asm-generic/bitops/__fls.h | 43 ++++++++ include/asm-generic/bitops/fls.h | 41 +++++++ include/asm-generic/bitops/fls64.h | 36 ++++++ include/linux/bitops.h | 27 +++++ include/linux/compat.h | 6 - include/linux/log2.h | 205 +++++++++++++++++++++++++++++++++++ include/spi_flash.h | 19 ++++ 33 files changed, 734 insertions(+), 25 deletions(-) create mode 100644 include/asm-generic/bitops/__ffs.h create mode 100644 include/asm-generic/bitops/__fls.h create mode 100644 include/asm-generic/bitops/fls.h create mode 100644 include/asm-generic/bitops/fls64.h create mode 100644 include/linux/log2.h