1. 14 6月, 2014 1 次提交
  2. 22 9月, 2013 1 次提交
  3. 16 9月, 2013 1 次提交
  4. 04 8月, 2013 1 次提交
  5. 18 3月, 2013 1 次提交
  6. 04 1月, 2013 1 次提交
    • G
      Drivers: iio: remove __dev* attributes. · fc52692c
      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, 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: Jonathan Cameron <jic23@cam.ac.uk>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      fc52692c
  7. 22 11月, 2012 1 次提交
  8. 20 11月, 2012 5 次提交
  9. 15 8月, 2012 1 次提交
    • L
      staging:iio: Constify static iio_chan_spec arrays · f4e4b955
      Lars-Peter Clausen 提交于
      The per driver iio_chan_spec arrays are usually shared between multiple device
      instances. So a single device instance may not modify the iio_chan_spec array
      since this would also affect the other device instances. To make this restriction
      explicit mark the per driver iio_chan_spec arrays as const.
      
      Conversion was done automatically using the following coccinelle semantic patch:
      
      // <smpl>
      @disable optional_qualifier@
      identifier channels;
      @@
      static
      +const
      struct iio_chan_spec channels[] = ...;
      // </smpl>
      Signed-off-by: NLars-Peter Clausen <lars@metafoo.de>
      Signed-off-by: NJonathan Cameron <jic23@kernel.org>
      f4e4b955
  10. 19 6月, 2012 1 次提交
  11. 30 4月, 2012 1 次提交
    • L
      staging:iio: Streamline API function naming · 7cbb7537
      Lars-Peter Clausen 提交于
      Currently we use two different naming schemes in the IIO API, iio_verb_object
      and iio_object_verb. E.g iio_device_register and iio_allocate_device. This
      patches renames instances of the later to the former. The patch also renames allocate to
      alloc as this seems to be the preferred form throughout the kernel.
      
      In particular the following renames are performed by the patch:
      	iio_put_device -> iio_device_put
      	iio_allocate_device -> iio_device_alloc
      	iio_free_device -> iio_device_free
      	iio_get_trigger -> iio_trigger_get
      	iio_put_trigger -> iio_trigger_put
      	iio_allocate_trigger -> iio_trigger_alloc
      	iio_free_trigger -> iio_trigger_free
      
      The conversion was done with the following coccinelle patch with manual fixes to
      comments and documentation.
      
      <smpl>
      @@
      @@
      -iio_put_device
      +iio_device_put
      @@
      @@
      -iio_allocate_device
      +iio_device_alloc
      @@
      @@
      -iio_free_device
      +iio_device_free
      @@
      @@
      -iio_get_trigger
      +iio_trigger_get
      @@
      @@
      -iio_put_trigger
      +iio_trigger_put
      @@
      @@
      -iio_allocate_trigger
      +iio_trigger_alloc
      @@
      @@
      -iio_free_trigger
      +iio_trigger_free
      </smpl>
      Signed-off-by: NLars-Peter Clausen <lars@metafoo.de>
      Acked-by: NJonathan Cameron <jic23@kernel.org>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      7cbb7537
  12. 26 4月, 2012 1 次提交
  13. 19 4月, 2012 1 次提交
  14. 14 4月, 2012 1 次提交
  15. 09 12月, 2011 2 次提交
  16. 27 11月, 2011 5 次提交
  17. 18 11月, 2011 1 次提交
  18. 18 10月, 2011 1 次提交
  19. 11 10月, 2011 1 次提交
  20. 30 9月, 2011 1 次提交
  21. 27 9月, 2011 2 次提交
  22. 07 9月, 2011 3 次提交
  23. 26 8月, 2011 1 次提交
  24. 24 8月, 2011 1 次提交
  25. 20 5月, 2011 4 次提交