Lines Matching refs:xyz
3963 Suppose that you create a new PCI driver for the card “xyz”. The card
3964 module name would be snd-xyz. The new driver is usually put into the
3977 Suppose you have a file xyz.c. Add the following two lines::
3979 snd-xyz-y := xyz.o
3980 obj-$(CONFIG_SND_XYZ) += snd-xyz.o
3984 Add the new entry of Kconfig for your xyz driver::
3993 the module will be called snd-xyz.
3995 The line ``select SND_PCM`` specifies that the driver xyz supports PCM.
4011 Suppose that the driver snd-xyz have several source files. They are
4012 located in the new subdirectory, sound/pci/xyz.
4014 1. Add a new directory (``sound/pci/xyz``) in ``sound/pci/Makefile``
4017 obj-$(CONFIG_SND) += sound/pci/xyz/
4020 2. Under the directory ``sound/pci/xyz``, create a Makefile::
4022 snd-xyz-y := xyz.o abc.o def.o
4023 obj-$(CONFIG_SND_XYZ) += snd-xyz.o