Revision 8e333791d4605dbce611c22f71a86721c9afc336 authored by Linus Torvalds on 27 July 2024, 19:54:06 UTC, committed by Linus Torvalds on 27 July 2024, 19:54:06 UTC
Pull gpio fix from Bartosz Golaszewski:

 - don't use sprintf() with non-constant format string

* tag 'gpio-fixes-for-v6.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux:
  gpio: virtuser: avoid non-constant format string
2 parent s bf80f13 + 3ae08e4
Raw File
Makefile
# SPDX-License-Identifier: GPL-2.0
#
# Makefile for ALSA
# Copyright (c) 2001 by Jaroslav Kysela <perex@perex.cz>
#

snd-adlib-y := adlib.o
snd-als100-y := als100.o
snd-azt2320-y := azt2320.o
snd-cmi8328-y := cmi8328.o
snd-cmi8330-y := cmi8330.o
snd-es18xx-y := es18xx.o
snd-opl3sa2-y := opl3sa2.o
snd-sc6000-y := sc6000.o
snd-sscape-y := sscape.o

# Toplevel Module Dependency
obj-$(CONFIG_SND_ADLIB) += snd-adlib.o
obj-$(CONFIG_SND_ALS100) += snd-als100.o
obj-$(CONFIG_SND_AZT2320) += snd-azt2320.o
obj-$(CONFIG_SND_CMI8328) += snd-cmi8328.o
obj-$(CONFIG_SND_CMI8330) += snd-cmi8330.o
obj-$(CONFIG_SND_ES18XX) += snd-es18xx.o
obj-$(CONFIG_SND_OPL3SA2) += snd-opl3sa2.o
obj-$(CONFIG_SND_SC6000) += snd-sc6000.o
obj-$(CONFIG_SND_SSCAPE) += snd-sscape.o

obj-$(CONFIG_SND) += ad1816a/ ad1848/ cs423x/ es1688/ galaxy/ gus/ msnd/ opti9xx/ \
		     sb/ wavefront/ wss/
back to top