mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-03-16 12:14:06 +00:00
counter: Add the necessary colons and indents to the comments of counter_compi
commit0032ca576a
upstream. Since commitaaec1a0f76
("counter: Internalize sysfs interface code") introduce a warning as: linux-next/Documentation/driver-api/generic-counter:234: ./include/linux/counter.h:43: WARNING: Unexpected indentation. linux-next/Documentation/driver-api/generic-counter:234: ./include/linux/counter.h:45: WARNING: Block quote ends without a blank line; unexpected unindent. Add the necessary colons and indents. Fixes:aaec1a0f76
("counter: Internalize sysfs interface code") Signed-off-by: Yanteng Si <siyanteng@loongson.cn> Signed-off-by: William Breathitt Gray <vilhelm.gray@gmail.com> Link: https://lore.kernel.org/r/26011e814d6eca02c7ebdbb92f171a49928a7e89.1640072891.git.vilhelm.gray@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
db6a132b58
commit
8f967fbfc3
1 changed files with 20 additions and 20 deletions
|
@ -73,64 +73,64 @@ enum counter_synapse_action {
|
|||
* @type: Counter component data type
|
||||
* @name: device-specific component name
|
||||
* @priv: component-relevant data
|
||||
* @action_read Synapse action mode read callback. The read value of the
|
||||
* @action_read: Synapse action mode read callback. The read value of the
|
||||
* respective Synapse action mode should be passed back via
|
||||
* the action parameter.
|
||||
* @device_u8_read Device u8 component read callback. The read value of the
|
||||
* @device_u8_read: Device u8 component read callback. The read value of the
|
||||
* respective Device u8 component should be passed back via
|
||||
* the val parameter.
|
||||
* @count_u8_read Count u8 component read callback. The read value of the
|
||||
* @count_u8_read: Count u8 component read callback. The read value of the
|
||||
* respective Count u8 component should be passed back via
|
||||
* the val parameter.
|
||||
* @signal_u8_read Signal u8 component read callback. The read value of the
|
||||
* @signal_u8_read: Signal u8 component read callback. The read value of the
|
||||
* respective Signal u8 component should be passed back via
|
||||
* the val parameter.
|
||||
* @device_u32_read Device u32 component read callback. The read value of
|
||||
* @device_u32_read: Device u32 component read callback. The read value of
|
||||
* the respective Device u32 component should be passed
|
||||
* back via the val parameter.
|
||||
* @count_u32_read Count u32 component read callback. The read value of the
|
||||
* @count_u32_read: Count u32 component read callback. The read value of the
|
||||
* respective Count u32 component should be passed back via
|
||||
* the val parameter.
|
||||
* @signal_u32_read Signal u32 component read callback. The read value of
|
||||
* @signal_u32_read: Signal u32 component read callback. The read value of
|
||||
* the respective Signal u32 component should be passed
|
||||
* back via the val parameter.
|
||||
* @device_u64_read Device u64 component read callback. The read value of
|
||||
* @device_u64_read: Device u64 component read callback. The read value of
|
||||
* the respective Device u64 component should be passed
|
||||
* back via the val parameter.
|
||||
* @count_u64_read Count u64 component read callback. The read value of the
|
||||
* @count_u64_read: Count u64 component read callback. The read value of the
|
||||
* respective Count u64 component should be passed back via
|
||||
* the val parameter.
|
||||
* @signal_u64_read Signal u64 component read callback. The read value of
|
||||
* @signal_u64_read: Signal u64 component read callback. The read value of
|
||||
* the respective Signal u64 component should be passed
|
||||
* back via the val parameter.
|
||||
* @action_write Synapse action mode write callback. The write value of
|
||||
* @action_write: Synapse action mode write callback. The write value of
|
||||
* the respective Synapse action mode is passed via the
|
||||
* action parameter.
|
||||
* @device_u8_write Device u8 component write callback. The write value of
|
||||
* @device_u8_write: Device u8 component write callback. The write value of
|
||||
* the respective Device u8 component is passed via the val
|
||||
* parameter.
|
||||
* @count_u8_write Count u8 component write callback. The write value of
|
||||
* @count_u8_write: Count u8 component write callback. The write value of
|
||||
* the respective Count u8 component is passed via the val
|
||||
* parameter.
|
||||
* @signal_u8_write Signal u8 component write callback. The write value of
|
||||
* @signal_u8_write: Signal u8 component write callback. The write value of
|
||||
* the respective Signal u8 component is passed via the val
|
||||
* parameter.
|
||||
* @device_u32_write Device u32 component write callback. The write value of
|
||||
* @device_u32_write: Device u32 component write callback. The write value of
|
||||
* the respective Device u32 component is passed via the
|
||||
* val parameter.
|
||||
* @count_u32_write Count u32 component write callback. The write value of
|
||||
* @count_u32_write: Count u32 component write callback. The write value of
|
||||
* the respective Count u32 component is passed via the val
|
||||
* parameter.
|
||||
* @signal_u32_write Signal u32 component write callback. The write value of
|
||||
* @signal_u32_write: Signal u32 component write callback. The write value of
|
||||
* the respective Signal u32 component is passed via the
|
||||
* val parameter.
|
||||
* @device_u64_write Device u64 component write callback. The write value of
|
||||
* @device_u64_write: Device u64 component write callback. The write value of
|
||||
* the respective Device u64 component is passed via the
|
||||
* val parameter.
|
||||
* @count_u64_write Count u64 component write callback. The write value of
|
||||
* @count_u64_write: Count u64 component write callback. The write value of
|
||||
* the respective Count u64 component is passed via the val
|
||||
* parameter.
|
||||
* @signal_u64_write Signal u64 component write callback. The write value of
|
||||
* @signal_u64_write: Signal u64 component write callback. The write value of
|
||||
* the respective Signal u64 component is passed via the
|
||||
* val parameter.
|
||||
*/
|
||||
|
|
Loading…
Add table
Reference in a new issue