Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ALSA: docs: Correct the kernel object suffix of target

The correct suffix is 'y' for the kernel code and
'objs' for the user space. Update documentation.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20240506085219.3403731-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>

authored by

Andy Shevchenko and committed by
Takashi Iwai
5e7488cd e8336a63

+2 -2
+2 -2
Documentation/sound/kernel-api/writing-an-alsa-driver.rst
··· 3976 3976 3977 3977 Suppose you have a file xyz.c. Add the following two lines:: 3978 3978 3979 - snd-xyz-objs := xyz.o 3979 + snd-xyz-y := xyz.o 3980 3980 obj-$(CONFIG_SND_XYZ) += snd-xyz.o 3981 3981 3982 3982 2. Create the Kconfig entry ··· 4019 4019 4020 4020 2. Under the directory ``sound/pci/xyz``, create a Makefile:: 4021 4021 4022 - snd-xyz-objs := xyz.o abc.o def.o 4022 + snd-xyz-y := xyz.o abc.o def.o 4023 4023 obj-$(CONFIG_SND_XYZ) += snd-xyz.o 4024 4024 4025 4025 3. Create the Kconfig entry