https://github.com/torvalds/linux
Revision 69ad185fa139b8fff2442d89440e382679d51f0f authored by Tejun Heo on 18 November 2005, 05:16:45 UTC, committed by Jeff Garzik on 18 November 2005, 18:11:39 UTC
This patch implements ATAPI support for sil24 and bumps driver version
to 0.23.

Signed-off-by: Tejun Heo <htejun@gmail.com>

--

Jeff, it has been converted to use ->dev_config as pointed out.
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
1 parent ca45160
Raw File
Tip revision: 69ad185fa139b8fff2442d89440e382679d51f0f authored by Tejun Heo on 18 November 2005, 05:16:45 UTC
[PATCH] sil24: add ATAPI support
Tip revision: 69ad185
Makefile
#
# Makefile for the kernel security code
#

obj-$(CONFIG_KEYS)			+= keys/
subdir-$(CONFIG_SECURITY_SELINUX)	+= selinux

# if we don't select a security model, use the default capabilities
ifneq ($(CONFIG_SECURITY),y)
obj-y		+= commoncap.o
endif

# Object file lists
obj-$(CONFIG_SECURITY)			+= security.o dummy.o inode.o
# Must precede capability.o in order to stack properly.
obj-$(CONFIG_SECURITY_SELINUX)		+= selinux/built-in.o
obj-$(CONFIG_SECURITY_CAPABILITIES)	+= commoncap.o capability.o
obj-$(CONFIG_SECURITY_ROOTPLUG)		+= commoncap.o root_plug.o
obj-$(CONFIG_SECURITY_SECLVL)		+= seclvl.o
back to top