Merge git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
authorLinus Torvalds <torvalds@linux-foundation.org>
Fri, 21 May 2010 21:46:51 +0000 (14:46 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 21 May 2010 21:46:51 +0000 (14:46 -0700)
* git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6: (46 commits)
  random: simplify fips mode
  crypto: authenc - Fix cryptlen calculation
  crypto: talitos - add support for sha224
  crypto: talitos - add hash algorithms
  crypto: talitos - second prepare step for adding ahash algorithms
  crypto: talitos - prepare for adding ahash algorithms
  crypto: n2 - Add Niagara2 crypto driver
  crypto: skcipher - Add ablkcipher_walk interfaces
  crypto: testmgr - Add testing for async hashing and update/final
  crypto: tcrypt - Add speed tests for async hashing
  crypto: scatterwalk - Fix scatterwalk_done() test
  crypto: hifn_795x - Rename ablkcipher_walk to hifn_cipher_walk
  padata: Use get_online_cpus/put_online_cpus in padata_free
  padata: Add some code comments
  padata: Flush the padata queues actively
  padata: Use a timer to handle remaining objects in the reorder queues
  crypto: shash - Remove usage of CRYPTO_MINALIGN
  crypto: mv_cesa - Use resource_size
  crypto: omap - OMAP macros corrected
  padata: Use get_online_cpus/put_online_cpus
  ...

Fix up conflicts in arch/arm/mach-omap2/devices.c

1  2 
arch/arm/mach-omap2/clock2420_data.c
arch/arm/mach-omap2/clock2430_data.c
arch/arm/mach-omap2/clock3xxx_data.c
arch/arm/mach-omap2/devices.c

Simple merge
Simple merge
Simple merge
index 705a7a30a87fd7261c44e62017962c5e101ffc3d,79dbf04cbaaf6452659e45cdd611cef5755b00f9..03e6c9ed82a41f66495fc318041c6a900e20256d
@@@ -455,39 -454,10 +456,41 @@@ static void omap_init_mcspi(void
  static inline void omap_init_mcspi(void) {}
  #endif
  
- #ifdef CONFIG_OMAP_SHA1_MD5
- static struct resource sha1_md5_resources[] = {
 +static struct resource omap2_pmu_resource = {
 +      .start  = 3,
 +      .end    = 3,
 +      .flags  = IORESOURCE_IRQ,
 +};
 +
 +static struct resource omap3_pmu_resource = {
 +      .start  = INT_34XX_BENCH_MPU_EMUL,
 +      .end    = INT_34XX_BENCH_MPU_EMUL,
 +      .flags  = IORESOURCE_IRQ,
 +};
 +
 +static struct platform_device omap_pmu_device = {
 +      .name           = "arm-pmu",
 +      .id             = ARM_PMU_DEVICE_CPU,
 +      .num_resources  = 1,
 +};
 +
 +static void omap_init_pmu(void)
 +{
 +      if (cpu_is_omap24xx())
 +              omap_pmu_device.resource = &omap2_pmu_resource;
 +      else if (cpu_is_omap34xx())
 +              omap_pmu_device.resource = &omap3_pmu_resource;
 +      else
 +              return;
 +
 +      platform_device_register(&omap_pmu_device);
 +}
 +
 +
+ #if defined(CONFIG_CRYPTO_DEV_OMAP_SHAM) || defined(CONFIG_CRYPTO_DEV_OMAP_SHAM_MODULE)
+ #ifdef CONFIG_ARCH_OMAP2
+ static struct resource omap2_sham_resources[] = {
        {
                .start  = OMAP24XX_SEC_SHA1MD5_BASE,
                .end    = OMAP24XX_SEC_SHA1MD5_BASE + 0x64,
@@@ -866,11 -835,9 +904,11 @@@ static int __init omap2_init_devices(vo
        omap_init_camera();
        omap_init_mbox();
        omap_init_mcspi();
 +      omap_init_pmu();
        omap_hdq_init();
        omap_init_sti();
-       omap_init_sha1_md5();
+       omap_init_sham();
 +      omap_init_vout();
  
        return 0;
  }