“228ce54f4ff4861f89fbba6f34f0cf76b225903f”上不存在“pkg/models/iam/im/im.go”
  1. 07 10月, 2013 2 次提交
  2. 13 9月, 2013 1 次提交
  3. 02 9月, 2013 1 次提交
  4. 21 8月, 2013 1 次提交
    • O
      hwrng: omap - reorder OMAP TRNG driver code · a246968e
      Olof Johansson 提交于
      The newly added omap4 support in the driver was added without
      consideration for building older configs. When building omap1_defconfig,
      it resulted in:
      
      drivers/char/hw_random/omap-rng.c:190:12: warning: 'omap4_rng_init' defined but not used [-Wunused-function]
      drivers/char/hw_random/omap-rng.c:215:13: warning: 'omap4_rng_cleanup' defined but not used [-Wunused-function]
      drivers/char/hw_random/omap-rng.c:251:20: warning: 'omap4_rng_irq' defined but not used [-Wunused-function]
      
      Move the code around so it is grouped with its operations struct, which
      for the omap4 case means also under the #ifdef CONFIG_OF, where it needs
      to be.
      Signed-off-by: NOlof Johansson <olof@lixom.net>
      Reviewed-by: NLokesh Vutla <lokeshvutla@ti.com>
      Signed-off-by: NHerbert Xu <herbert@gondor.apana.org.au>
      a246968e
  5. 14 8月, 2013 1 次提交
    • J
      hwrng: tx4939 - simplify use of devm_ioremap_resource · 9dc48034
      Julia Lawall 提交于
      Remove unneeded error handling on the result of a call to
      platform_get_resource when the value is passed to devm_ioremap_resource.
      
      Move the call to platform_get_resource adjacent to the call to
      devm_ioremap_resource to make the connection between them more clear.
      
      A simplified version of the semantic patch that makes this change is as
      follows: (http://coccinelle.lip6.fr/)
      
      // <smpl>
      @@
      expression pdev,res,n,e,e1;
      expression ret != 0;
      identifier l;
      @@
      
      - res = platform_get_resource(pdev, IORESOURCE_MEM, n);
        ... when != res
      - if (res == NULL) { ... \(goto l;\|return ret;\) }
        ... when != res
      + res = platform_get_resource(pdev, IORESOURCE_MEM, n);
        e = devm_ioremap_resource(e1, res);
      // </smpl>
      Signed-off-by: NJulia Lawall <Julia.Lawall@lip6.fr>
      Signed-off-by: NHerbert Xu <herbert@gondor.apana.org.au>
      9dc48034
  6. 09 8月, 2013 6 次提交
  7. 01 8月, 2013 1 次提交
  8. 21 6月, 2013 1 次提交
  9. 19 6月, 2013 1 次提交
    • A
      hwrng: bcm2835: fix MODULE_LICENSE tag · 22e8099f
      Arnd Bergmann 提交于
      The MODULE_LICENSE macro invocation must use either "GPL" or "GPL v2",
      but not "GPLv2" in order to be detected by the module loader.
      
      This fixes the allmodconfig build error:
      
      FATAL: modpost: GPL-incompatible module bcm2835-rng.ko uses GPL-only symbol 'platform_driver_unregister'
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Acked-by: NLubomir Rintel <lkundrak@v3.sk>
      Cc: Dom Cobley <popcornmix@gmail.com>
      Cc: Stephen Warren <swarren@wwwdotorg.org>
      Cc: Matt Mackall <mpm@selenic.com>
      Cc: linux-rpi-kernel@lists.infradead.org
      Cc: Herbert Xu <herbert@gondor.apana.org.au>
      22e8099f
  10. 11 6月, 2013 1 次提交
  11. 05 6月, 2013 2 次提交
  12. 24 5月, 2013 4 次提交
  13. 12 5月, 2013 1 次提交
  14. 25 4月, 2013 3 次提交
  15. 22 3月, 2013 2 次提交
  16. 20 3月, 2013 2 次提交
  17. 16 3月, 2013 1 次提交
  18. 08 3月, 2013 1 次提交
  19. 05 3月, 2013 1 次提交
  20. 13 2月, 2013 1 次提交
  21. 23 1月, 2013 1 次提交
  22. 21 1月, 2013 1 次提交
  23. 04 1月, 2013 1 次提交
    • G
      Drivers: char: remove __dev* attributes. · bcd2982a
      Greg Kroah-Hartman 提交于
      CONFIG_HOTPLUG is going away as an option.  As a result, the __dev*
      markings need to be removed.
      
      This change removes the use of __devinit, __devexit_p, __devinitdata,
      __devinitconst, and __devexit from these drivers.
      
      Based on patches originally written by Bill Pemberton, but redone by me
      in order to handle some of the coding style issues better, by hand.
      
      Cc: Bill Pemberton <wfp5p@virginia.edu>
      Cc: David Airlie <airlied@linux.ie>
      Cc: Matt Mackall <mpm@selenic.com>
      Cc: Herbert Xu <herbert@gondor.apana.org.au>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      bcd2982a
  24. 22 11月, 2012 3 次提交