Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tools: kmod: Handle snd_sof_pci_intel_ptl #1225

Merged
merged 1 commit into from
Jul 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tools/kmod/sof_insert.sh
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ insert_module snd_sof_pci_intel_icl
insert_module snd_sof_pci_intel_tgl
insert_module snd_sof_pci_intel_mtl
insert_module snd_sof_pci_intel_lnl
insert_module snd_sof_pci_intel_ptl

# OF driver
insert_module snd_sof_of
Expand Down
6 changes: 4 additions & 2 deletions tools/kmod/sof_remove.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,9 @@ remove_module snd_usbmidi_lib
#-------------------------------------------
# Top level devices
# ACPI is after PCI due to TNG dependencies
# TGL and ICL depend on CNL, and LNL on MTL,
# the non-linear order is intentional
# TGL and ICL depend on CNL, PTL on LNL and
# LNL on MTL, the non-linear order is
# intentional
#-------------------------------------------
remove_module snd_hda_intel
remove_module snd_sof_pci_intel_tng
Expand All @@ -98,6 +99,7 @@ remove_module snd_sof_pci_intel_tgl
remove_module snd_sof_pci_intel_icl
remove_module snd_sof_pci_intel_cnl

remove_module snd_sof_pci_intel_ptl
remove_module snd_sof_pci_intel_lnl
remove_module snd_sof_pci_intel_mtl

Expand Down
Loading