Message ID | 20240506085219.3403731-1-andriy.shevchenko@linux.intel.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 5e7488cdeb26bd5bbc1beb265dba5b33d7b60e68 |
Headers | show |
Series | [v1,1/1] ALSA: Correct the kernel object suffix of target | expand |
On Mon, 06 May 2024 10:52:19 +0200, Andy Shevchenko wrote: > > 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> Applied now. I added a suffix to the subject to indicate it's a documentation fix, too. thanks, Takashi
On Mon, May 06, 2024 at 04:13:33PM +0200, Takashi Iwai wrote: > On Mon, 06 May 2024 10:52:19 +0200, > Andy Shevchenko wrote: > > > > 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> > > Applied now. I added a suffix to the subject to indicate it's a > documentation fix, too. Thank you!
diff --git a/Documentation/sound/kernel-api/writing-an-alsa-driver.rst b/Documentation/sound/kernel-api/writing-an-alsa-driver.rst index 2d2998faff62..801b0bb57e97 100644 --- a/Documentation/sound/kernel-api/writing-an-alsa-driver.rst +++ b/Documentation/sound/kernel-api/writing-an-alsa-driver.rst @@ -3976,7 +3976,7 @@ Driver with A Single Source File Suppose you have a file xyz.c. Add the following two lines:: - snd-xyz-objs := xyz.o + snd-xyz-y := xyz.o obj-$(CONFIG_SND_XYZ) += snd-xyz.o 2. Create the Kconfig entry @@ -4019,7 +4019,7 @@ located in the new subdirectory, sound/pci/xyz. 2. Under the directory ``sound/pci/xyz``, create a Makefile:: - snd-xyz-objs := xyz.o abc.o def.o + snd-xyz-y := xyz.o abc.o def.o obj-$(CONFIG_SND_XYZ) += snd-xyz.o 3. Create the Kconfig entry
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> --- Documentation/sound/kernel-api/writing-an-alsa-driver.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)