~ubuntu-branches/ubuntu/saucy/linux-n900/saucy

« back to all changes in this revision

Viewing changes to drivers/s390/crypto/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Mathieu Poirier
  • Date: 2011-02-18 09:43:31 UTC
  • Revision ID: james.westby@ubuntu.com-20110218094331-eyubsja4f9k0yhmq
Tags: 2.6.35-1.1
Initial release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# S/390 crypto devices
 
3
#
 
4
 
 
5
ifdef CONFIG_ZCRYPT_MONOLITHIC
 
6
 
 
7
z90crypt-objs := zcrypt_mono.o ap_bus.o zcrypt_api.o \
 
8
                zcrypt_pcica.o zcrypt_pcicc.o zcrypt_pcixcc.o zcrypt_cex2a.o
 
9
obj-$(CONFIG_ZCRYPT) += z90crypt.o
 
10
 
 
11
else
 
12
 
 
13
ap-objs := ap_bus.o
 
14
obj-$(CONFIG_ZCRYPT) += ap.o zcrypt_api.o zcrypt_pcicc.o zcrypt_pcixcc.o
 
15
obj-$(CONFIG_ZCRYPT) += zcrypt_pcica.o zcrypt_cex2a.o
 
16
 
 
17
endif