File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -820,15 +820,15 @@ struct sdw_master_port_ops {
820
820
struct sdw_msg ;
821
821
822
822
/**
823
- * struct sdw_defer - SDW deffered message
824
- * @length: message length
823
+ * struct sdw_defer - SDW deferred message
825
824
* @complete: message completion
826
825
* @msg: SDW message
826
+ * @length: message length
827
827
*/
828
828
struct sdw_defer {
829
+ struct sdw_msg * msg ;
829
830
int length ;
830
831
struct completion complete ;
831
- struct sdw_msg * msg ;
832
832
};
833
833
834
834
/**
@@ -1010,18 +1010,18 @@ struct sdw_stream_params {
1010
1010
* @params: Stream parameters
1011
1011
* @state: Current state of the stream
1012
1012
* @type: Stream type PCM or PDM
1013
+ * @m_rt_count: Count of Master runtime(s) in this stream
1013
1014
* @master_list: List of Master runtime(s) in this stream.
1014
1015
* master_list can contain only one m_rt per Master instance
1015
1016
* for a stream
1016
- * @m_rt_count: Count of Master runtime(s) in this stream
1017
1017
*/
1018
1018
struct sdw_stream_runtime {
1019
1019
const char * name ;
1020
1020
struct sdw_stream_params params ;
1021
1021
enum sdw_stream_state state ;
1022
1022
enum sdw_stream_type type ;
1023
- struct list_head master_list ;
1024
1023
int m_rt_count ;
1024
+ struct list_head master_list ;
1025
1025
};
1026
1026
1027
1027
struct sdw_stream_runtime * sdw_alloc_stream (const char * stream_name );
You can’t perform that action at this time.
0 commit comments