pci-tng.c (f71f59dd450813684d838e0c1d6602186b7d2d8f) | pci-tng.c (97e22cbd0dc318f1cedb3546d2047403506bdc2d) |
---|---|
1// SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) 2// 3// This file is provided under a dual BSD/GPLv2 license. When using or 4// redistributing this file, you may do so under either license. 5// 6// Copyright(c) 2018-2021 Intel Corporation. All rights reserved. 7// 8// Author: Liam Girdwood <liam.r.girdwood@linux.intel.com> --- 142 unchanged lines hidden (view full) --- 151 .irq_thread = atom_irq_thread, 152 153 /* ipc */ 154 .send_msg = atom_send_msg, 155 .fw_ready = sof_fw_ready, 156 .get_mailbox_offset = atom_get_mailbox_offset, 157 .get_window_offset = atom_get_window_offset, 158 | 1// SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) 2// 3// This file is provided under a dual BSD/GPLv2 license. When using or 4// redistributing this file, you may do so under either license. 5// 6// Copyright(c) 2018-2021 Intel Corporation. All rights reserved. 7// 8// Author: Liam Girdwood <liam.r.girdwood@linux.intel.com> --- 142 unchanged lines hidden (view full) --- 151 .irq_thread = atom_irq_thread, 152 153 /* ipc */ 154 .send_msg = atom_send_msg, 155 .fw_ready = sof_fw_ready, 156 .get_mailbox_offset = atom_get_mailbox_offset, 157 .get_window_offset = atom_get_window_offset, 158 |
159 .ipc_msg_data = intel_ipc_msg_data, 160 .ipc_pcm_params = intel_ipc_pcm_params, | 159 .ipc_msg_data = sof_ipc_msg_data, 160 .ipc_pcm_params = sof_ipc_pcm_params, |
161 162 /* machine driver */ 163 .machine_select = atom_machine_select, 164 .machine_register = sof_machine_register, 165 .machine_unregister = sof_machine_unregister, 166 .set_mach_params = atom_set_mach_params, 167 168 /* debug */ 169 .debug_map = tng_debugfs, 170 .debug_map_count = ARRAY_SIZE(tng_debugfs), 171 .dbg_dump = atom_dump, 172 .debugfs_add_region_item = snd_sof_debugfs_add_region_item_iomem, 173 174 /* stream callbacks */ | 161 162 /* machine driver */ 163 .machine_select = atom_machine_select, 164 .machine_register = sof_machine_register, 165 .machine_unregister = sof_machine_unregister, 166 .set_mach_params = atom_set_mach_params, 167 168 /* debug */ 169 .debug_map = tng_debugfs, 170 .debug_map_count = ARRAY_SIZE(tng_debugfs), 171 .dbg_dump = atom_dump, 172 .debugfs_add_region_item = snd_sof_debugfs_add_region_item_iomem, 173 174 /* stream callbacks */ |
175 .pcm_open = intel_pcm_open, 176 .pcm_close = intel_pcm_close, | 175 .pcm_open = sof_stream_pcm_open, 176 .pcm_close = sof_stream_pcm_close, |
177 178 /* module loading */ 179 .load_module = snd_sof_parse_module_memcpy, 180 181 /*Firmware loading */ 182 .load_firmware = snd_sof_load_firmware_memcpy, 183 184 /* DAI drivers */ --- 58 unchanged lines hidden --- | 177 178 /* module loading */ 179 .load_module = snd_sof_parse_module_memcpy, 180 181 /*Firmware loading */ 182 .load_firmware = snd_sof_load_firmware_memcpy, 183 184 /* DAI drivers */ --- 58 unchanged lines hidden --- |