1. 07 7月, 2012 1 次提交
  2. 23 6月, 2012 1 次提交
  3. 15 5月, 2012 1 次提交
  4. 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
  5. 26 4月, 2012 2 次提交
  6. 02 12月, 2011 1 次提交
  7. 27 11月, 2011 3 次提交
  8. 11 10月, 2011 1 次提交
  9. 27 9月, 2011 2 次提交
  10. 07 9月, 2011 3 次提交
  11. 25 8月, 2011 7 次提交
  12. 24 8月, 2011 2 次提交
  13. 29 6月, 2011 1 次提交
  14. 08 6月, 2011 1 次提交
  15. 20 5月, 2011 6 次提交
  16. 26 4月, 2011 2 次提交
  17. 23 7月, 2010 4 次提交
  18. 09 7月, 2010 1 次提交