summaryrefslogtreecommitdiff
path: root/usr/src/uts/intel/md5
diff options
context:
space:
mode:
authorDan OpenSolaris Anderson <opensolaris@drydog.com>2009-11-20 18:04:58 -0800
committerDan OpenSolaris Anderson <opensolaris@drydog.com>2009-11-20 18:04:58 -0800
commit8de5c4f463386063e184a851437d58080c6c626c (patch)
tree36b5ef30d7fb15bc2d9e96cb7e52775e48a4a875 /usr/src/uts/intel/md5
parent14c2ce9048cb9407fdf675f7ef76081a1dd5e715 (diff)
downloadillumos-joyent-8de5c4f463386063e184a851437d58080c6c626c.tar.gz
6899006 Remove .byte asm directives and use new Intel Westmere opcodes
6647055 x86_64 MD5/SHA1 assembly source should use 32-bit registers when the assembler supports it
Diffstat (limited to 'usr/src/uts/intel/md5')
-rw-r--r--usr/src/uts/intel/md5/Makefile14
1 files changed, 2 insertions, 12 deletions
diff --git a/usr/src/uts/intel/md5/Makefile b/usr/src/uts/intel/md5/Makefile
index a87d5972ad..aaa61d3243 100644
--- a/usr/src/uts/intel/md5/Makefile
+++ b/usr/src/uts/intel/md5/Makefile
@@ -21,11 +21,9 @@
#
# uts/intel/md5/Makefile
#
-# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
+# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
-#ident "%Z%%M% %I% %E% SMI"
-#
# This makefile drives the production of the md5 crypto kernel module.
#
# intel architecture dependent
@@ -41,11 +39,11 @@ COMDIR = $(COMMONBASE)/crypto/md5
# Define the module and object file sets.
#
MODULE = md5
-LINTS = $(MD5_OBJS:%.o=$(LINTS_DIR)/%.ln)
MD5_OBJS_32 =
MD5_OBJS_64 = md5_amd64.o
MD5_OBJS += $(MD5_OBJS_$(CLASS))
OBJECTS = $(MD5_OBJS:%=$(OBJS_DIR)/%)
+LINTS = $(MD5_OBJS:%.o=$(LINTS_DIR)/%.ln)
ROOTMODULE = $(ROOT_CRYPTO_DIR)/$(MODULE)
ROOTLINK = $(ROOT_MISC_DIR)/$(MODULE)
@@ -72,14 +70,6 @@ INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOTLINK)
LDFLAGS += -dy -Nmisc/kcf
#
-# For now, disable these lint checks; maintainers should endeavor
-# to investigate and remove these for maximum lint coverage.
-# Please do not carry these forward to new Makefiles.
-#
-LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
-LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
-
-#
# Default build targets.
#
.KEEP_STATE: