diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-10-29 07:39:00 -0400 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2013-11-24 16:07:11 -0500 |
commit | a7e57dce02ceb8212f106191fdfbc0fcb61ce9e0 (patch) | |
tree | b3527156948f0a208869dfdf31a890ebfcc4261a /include/linux/iio | |
parent | 8caa07c0e565a15f49f290ca4c6a3adf968ddd38 (diff) |
iio: core: Move kernel doc to the right location
Documentation related to function should be placed above
its implementation. Move it accordingly.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'include/linux/iio')
-rw-r--r-- | include/linux/iio/iio.h | 80 |
1 files changed, 0 insertions, 80 deletions
diff --git a/include/linux/iio/iio.h b/include/linux/iio/iio.h index a8cabda4d108..5b125fd554e4 100644 --- a/include/linux/iio/iio.h +++ b/include/linux/iio/iio.h | |||
@@ -490,35 +490,12 @@ struct iio_dev { | |||
490 | #endif | 490 | #endif |
491 | }; | 491 | }; |
492 | 492 | ||
493 | /** | ||
494 | * iio_find_channel_from_si() - get channel from its scan index | ||
495 | * @indio_dev: device | ||
496 | * @si: scan index to match | ||
497 | */ | ||
498 | const struct iio_chan_spec | 493 | const struct iio_chan_spec |
499 | *iio_find_channel_from_si(struct iio_dev *indio_dev, int si); | 494 | *iio_find_channel_from_si(struct iio_dev *indio_dev, int si); |
500 | |||
501 | /** | ||
502 | * iio_device_register() - register a device with the IIO subsystem | ||
503 | * @indio_dev: Device structure filled by the device driver | ||
504 | **/ | ||
505 | int iio_device_register(struct iio_dev *indio_dev); | 495 | int iio_device_register(struct iio_dev *indio_dev); |
506 | |||
507 | /** | ||
508 | * iio_device_unregister() - unregister a device from the IIO subsystem | ||
509 | * @indio_dev: Device structure representing the device. | ||
510 | **/ | ||
511 | void iio_device_unregister(struct iio_dev *indio_dev); | 496 | void iio_device_unregister(struct iio_dev *indio_dev); |
512 | |||
513 | int devm_iio_device_register(struct device *dev, struct iio_dev *indio_dev); | 497 | int devm_iio_device_register(struct device *dev, struct iio_dev *indio_dev); |
514 | void devm_iio_device_unregister(struct device *dev, struct iio_dev *indio_dev); | 498 | void devm_iio_device_unregister(struct device *dev, struct iio_dev *indio_dev); |
515 | |||
516 | /** | ||
517 | * iio_push_event() - try to add event to the list for userspace reading | ||
518 | * @indio_dev: IIO device structure | ||
519 | * @ev_code: What event | ||
520 | * @timestamp: When the event occurred | ||
521 | **/ | ||
522 | int iio_push_event(struct iio_dev *indio_dev, u64 ev_code, s64 timestamp); | 499 | int iio_push_event(struct iio_dev *indio_dev, u64 ev_code, s64 timestamp); |
523 | 500 | ||
524 | extern struct bus_type iio_bus_type; | 501 | extern struct bus_type iio_bus_type; |
@@ -582,10 +559,6 @@ static inline void *iio_device_get_drvdata(struct iio_dev *indio_dev) | |||
582 | 559 | ||
583 | /* Can we make this smaller? */ | 560 | /* Can we make this smaller? */ |
584 | #define IIO_ALIGN L1_CACHE_BYTES | 561 | #define IIO_ALIGN L1_CACHE_BYTES |
585 | /** | ||
586 | * iio_device_alloc() - allocate an iio_dev from a driver | ||
587 | * @sizeof_priv: Space to allocate for private structure. | ||
588 | **/ | ||
589 | struct iio_dev *iio_device_alloc(int sizeof_priv); | 562 | struct iio_dev *iio_device_alloc(int sizeof_priv); |
590 | 563 | ||
591 | static inline void *iio_priv(const struct iio_dev *indio_dev) | 564 | static inline void *iio_priv(const struct iio_dev *indio_dev) |
@@ -599,64 +572,11 @@ static inline struct iio_dev *iio_priv_to_dev(void *priv) | |||
599 | ALIGN(sizeof(struct iio_dev), IIO_ALIGN)); | 572 | ALIGN(sizeof(struct iio_dev), IIO_ALIGN)); |
600 | } | 573 | } |
601 | 574 | ||
602 | /** | ||
603 | * iio_device_free() - free an iio_dev from a driver | ||
604 | * @indio_dev: the iio_dev associated with the device | ||
605 | **/ | ||
606 | void iio_device_free(struct iio_dev *indio_dev); | 575 | void iio_device_free(struct iio_dev *indio_dev); |
607 | |||
608 | /** | ||
609 | * devm_iio_device_alloc - Resource-managed iio_device_alloc() | ||
610 | * @dev: Device to allocate iio_dev for | ||
611 | * @sizeof_priv: Space to allocate for private structure. | ||
612 | * | ||
613 | * Managed iio_device_alloc. iio_dev allocated with this function is | ||
614 | * automatically freed on driver detach. | ||
615 | * | ||
616 | * If an iio_dev allocated with this function needs to be freed separately, | ||
617 | * devm_iio_device_free() must be used. | ||
618 | * | ||
619 | * RETURNS: | ||
620 | * Pointer to allocated iio_dev on success, NULL on failure. | ||
621 | */ | ||
622 | struct iio_dev *devm_iio_device_alloc(struct device *dev, int sizeof_priv); | 576 | struct iio_dev *devm_iio_device_alloc(struct device *dev, int sizeof_priv); |
623 | |||
624 | /** | ||
625 | * devm_iio_device_free - Resource-managed iio_device_free() | ||
626 | * @dev: Device this iio_dev belongs to | ||
627 | * @indio_dev: the iio_dev associated with the device | ||
628 | * | ||
629 | * Free iio_dev allocated with devm_iio_device_alloc(). | ||
630 | */ | ||
631 | void devm_iio_device_free(struct device *dev, struct iio_dev *indio_dev); | 577 | void devm_iio_device_free(struct device *dev, struct iio_dev *indio_dev); |
632 | |||
633 | /** | ||
634 | * devm_iio_trigger_alloc - Resource-managed iio_trigger_alloc() | ||
635 | * @dev: Device to allocate iio_trigger for | ||
636 | * @fmt: trigger name format. If it includes format | ||
637 | * specifiers, the additional arguments following | ||
638 | * format are formatted and inserted in the resulting | ||
639 | * string replacing their respective specifiers. | ||
640 | * | ||
641 | * Managed iio_trigger_alloc. iio_trigger allocated with this function is | ||
642 | * automatically freed on driver detach. | ||
643 | * | ||
644 | * If an iio_trigger allocated with this function needs to be freed separately, | ||
645 | * devm_iio_trigger_free() must be used. | ||
646 | * | ||
647 | * RETURNS: | ||
648 | * Pointer to allocated iio_trigger on success, NULL on failure. | ||
649 | */ | ||
650 | struct iio_trigger *devm_iio_trigger_alloc(struct device *dev, | 578 | struct iio_trigger *devm_iio_trigger_alloc(struct device *dev, |
651 | const char *fmt, ...); | 579 | const char *fmt, ...); |
652 | |||
653 | /** | ||
654 | * devm_iio_trigger_free - Resource-managed iio_trigger_free() | ||
655 | * @dev: Device this iio_dev belongs to | ||
656 | * @iio_trig: the iio_trigger associated with the device | ||
657 | * | ||
658 | * Free iio_trigger allocated with devm_iio_trigger_alloc(). | ||
659 | */ | ||
660 | void devm_iio_trigger_free(struct device *dev, struct iio_trigger *iio_trig); | 580 | void devm_iio_trigger_free(struct device *dev, struct iio_trigger *iio_trig); |
661 | 581 | ||
662 | /** | 582 | /** |