]> www.infradead.org Git - users/jedix/linux-maple.git/commit
ALSA: hda/cirrus_scodec_test: Modernize creation of dummy devices
authorRichard Fitzgerald <rf@opensource.cirrus.com>
Tue, 15 Apr 2025 10:54:14 +0000 (11:54 +0100)
committerTakashi Iwai <tiwai@suse.de>
Tue, 15 Apr 2025 15:12:54 +0000 (17:12 +0200)
commitbbf9d313492ab2c4c71e80e4cf3f1e7bc0f629d9
tree426cc2f9e791cc374055ae7b4c3289f6b0fb0493
parentfd7f34322053a69904430a63e987a162909d6f33
ALSA: hda/cirrus_scodec_test: Modernize creation of dummy devices

Replace the old direct use of platform_device APIs with newer KUnit APIs
and the faux bus.

The dummy codec driver device doesn't need to be a platform device.
It can be a faux bus device.

The dummy GPIO driver still must be a platform_device so that a
software_node can be added to it before it probes. But use the new
KUnit-managed APIs to create the platform_device and platform_driver.
These will cleanup automatically when a test completes or fails.

Also use KUnit resource cleanup to destroy the faux bus driver and the GPIO
software node instead of doing this "manually" in test exit() functions.

Signed-off-by: Richard Fitzgerald <rf@opensource.cirrus.com>
Link: https://patch.msgid.link/20250415105414.471039-1-rf@opensource.cirrus.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/hda/cirrus_scodec_test.c