summaryrefslogtreecommitdiff
path: root/usr/src
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src')
-rw-r--r--usr/src/cmd/sgs/liblddbg/sparc/Makefile2
-rw-r--r--usr/src/lib/libpri/Makefile.com7
-rw-r--r--usr/src/man/man1m/vmstat.1m8
-rw-r--r--usr/src/uts/common/io/cxgbe/shared/shared.c6
-rw-r--r--usr/src/uts/common/io/cxgbe/shared/shared.h2
-rw-r--r--usr/src/uts/common/io/cxgbe/t4nex/cudbg.h2
-rw-r--r--usr/src/uts/common/io/cxgbe/t4nex/t4_ioctl.c2
-rw-r--r--usr/src/uts/common/vm/seg_spt.c4
-rw-r--r--usr/src/uts/sun4u/lw8/io/lw8.c4
-rw-r--r--usr/src/uts/sun4u/lw8/io/ntwdt.c8
-rw-r--r--usr/src/uts/sun4u/lw8/io/sgenv.c12
-rw-r--r--usr/src/uts/sun4u/lw8/io/sgfru.c4
-rw-r--r--usr/src/uts/sun4u/os/plat_ecc_unum.c10
-rw-r--r--usr/src/uts/sun4u/serengeti/io/ssm.c10
-rw-r--r--usr/src/uts/sun4v/io/n2rng/n2rng.c2
-rw-r--r--usr/src/uts/sun4v/io/n2rng/n2rng_kcf.c12
-rw-r--r--usr/src/uts/sun4v/n2rng/Makefile12
17 files changed, 45 insertions, 62 deletions
diff --git a/usr/src/cmd/sgs/liblddbg/sparc/Makefile b/usr/src/cmd/sgs/liblddbg/sparc/Makefile
index d11c3f43fb..4345c2ca64 100644
--- a/usr/src/cmd/sgs/liblddbg/sparc/Makefile
+++ b/usr/src/cmd/sgs/liblddbg/sparc/Makefile
@@ -31,6 +31,6 @@ include ../Makefile.com
all: $(DYNLIB) $(LIBLINKS)
install \
-package: all $(ROOTLIBS)
+package: all $(ROOTLIBS) $(ROOTCOMPATLINKS)
include ../Makefile.targ
diff --git a/usr/src/lib/libpri/Makefile.com b/usr/src/lib/libpri/Makefile.com
index 8cdd66f095..6e9e9a8e12 100644
--- a/usr/src/lib/libpri/Makefile.com
+++ b/usr/src/lib/libpri/Makefile.com
@@ -37,14 +37,11 @@ SRCDIR = ../common
SRCS = $(LIBSRCS:%.c=$(SRCDIR)/%.c)
CPPFLAGS += -I. -I$(SRC)/uts/sun4v
-CFLAGS += $(CCVERBOSE) $(C_BIGPICFLAGS)
-CFLAGS64 += $(CCVERBOSE) $(C_BIGPICFLAGS)
+CFLAGS += $(C_BIGPICFLAGS)
+CFLAGS64 += $(C_BIGPICFLAGS)
LDLIBS += -lc
-
- -I$(ROOT)/usr/platform/sun4v/include
-
.KEEP_STATE:
all: $(LIBS)
diff --git a/usr/src/man/man1m/vmstat.1m b/usr/src/man/man1m/vmstat.1m
index 4b23b651fd..166ef42ae9 100644
--- a/usr/src/man/man1m/vmstat.1m
+++ b/usr/src/man/man1m/vmstat.1m
@@ -3,7 +3,7 @@
.\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing.
.\" See the License for the specific language governing permissions and limitations under the License. When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with
.\" the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
-.TH VMSTAT 1M "May 1, 2020"
+.TH VMSTAT 1M "May 6, 2020"
.SH NAME
vmstat \- report virtual memory statistics
.SH SYNOPSIS
@@ -147,7 +147,7 @@ File system page-frees.
.RE
When executed in a \fBzone\fR and if the pools facility is active, all of the
-above only report actitivity on the processors in the processor set of the
+above only report activity on the processors in the processor set of the
\fBzone\fR's pool.
.RE
@@ -449,7 +449,7 @@ system calls
.RE
When executed in a \fBzone\fR and if the pools facility is active, all of the
-above only report actitivity on the processors in the processor set of the
+above only report activity on the processors in the processor set of the
\fBzone\fR's pool.
.RE
@@ -489,7 +489,7 @@ idle time
.RE
When executed in a \fBzone\fR and if the pools facility is active, all of the
-above only report actitivity on the processors in the processor set of the
+above only report activity on the processors in the processor set of the
\fBzone\fR's pool.
.RE
diff --git a/usr/src/uts/common/io/cxgbe/shared/shared.c b/usr/src/uts/common/io/cxgbe/shared/shared.c
index 07dd78f189..e86272134a 100644
--- a/usr/src/uts/common/io/cxgbe/shared/shared.c
+++ b/usr/src/uts/common/io/cxgbe/shared/shared.c
@@ -32,17 +32,19 @@
static int rxbuf_ctor(void *, void *, int);
static void rxbuf_dtor(void *, void *);
-void
+int
cxgb_printf(dev_info_t *dip, int level, char *f, ...)
{
va_list list;
char fmt[128];
+ int rv;
- (void) snprintf(fmt, sizeof (fmt), "%s%d: %s", ddi_driver_name(dip),
+ rv = snprintf(fmt, sizeof (fmt), "%s%d: %s", ddi_driver_name(dip),
ddi_get_instance(dip), f);
va_start(list, f);
vcmn_err(level, fmt, list);
va_end(list);
+ return (rv);
}
kmem_cache_t *
diff --git a/usr/src/uts/common/io/cxgbe/shared/shared.h b/usr/src/uts/common/io/cxgbe/shared/shared.h
index 5838416838..d3171c224b 100644
--- a/usr/src/uts/common/io/cxgbe/shared/shared.h
+++ b/usr/src/uts/common/io/cxgbe/shared/shared.h
@@ -66,7 +66,7 @@ struct rxbuf_cache_params {
size_t buf_size;
};
-void cxgb_printf(dev_info_t *dip, int level, char *f, ...);
+int cxgb_printf(dev_info_t *dip, int level, char *f, ...);
kmem_cache_t *rxbuf_cache_create(struct rxbuf_cache_params *p);
void rxbuf_cache_destroy(kmem_cache_t *cache);
struct rxbuf *rxbuf_alloc(kmem_cache_t *cache, int kmflags, uint_t ref_cnt);
diff --git a/usr/src/uts/common/io/cxgbe/t4nex/cudbg.h b/usr/src/uts/common/io/cxgbe/t4nex/cudbg.h
index cb21451e5c..e86de21085 100644
--- a/usr/src/uts/common/io/cxgbe/t4nex/cudbg.h
+++ b/usr/src/uts/common/io/cxgbe/t4nex/cudbg.h
@@ -318,7 +318,7 @@ static struct el ATTRIBUTE_UNUSED entity_list[] = {
};
#ifdef _KERNEL
-typedef int (*cudbg_print_cb) (dev_info_t *dip, ...);
+typedef int (*cudbg_print_cb) (dev_info_t *dip, int, char *, ...);
#else
typedef int (*cudbg_print_cb) (char *, ...);
#endif
diff --git a/usr/src/uts/common/io/cxgbe/t4nex/t4_ioctl.c b/usr/src/uts/common/io/cxgbe/t4nex/t4_ioctl.c
index 8b03bb9e84..85d79e6201 100644
--- a/usr/src/uts/common/io/cxgbe/t4nex/t4_ioctl.c
+++ b/usr/src/uts/common/io/cxgbe/t4nex/t4_ioctl.c
@@ -1706,7 +1706,7 @@ get_cudbg(struct adapter *sc, void *data, int flags)
cudbg = cudbg_get_init(handle);
cudbg->adap = sc;
- cudbg->print = (cudbg_print_cb)cxgb_printf;
+ cudbg->print = cxgb_printf;
memcpy(cudbg->dbg_bitmap, dump.bitmap, sizeof(cudbg->dbg_bitmap));
diff --git a/usr/src/uts/common/vm/seg_spt.c b/usr/src/uts/common/vm/seg_spt.c
index 1a9ef5223f..1308935159 100644
--- a/usr/src/uts/common/vm/seg_spt.c
+++ b/usr/src/uts/common/vm/seg_spt.c
@@ -63,7 +63,7 @@ size_t spt_used;
* See spt_setminfree().
*/
pgcnt_t segspt_minfree = 0;
-size_t segspt_minfree_clamp = (1UL << 30); /* 1Gb in bytes */
+size_t segspt_minfree_clamp = (1UL << 30); /* 1GB in bytes */
static int segspt_create(struct seg **segpp, void *argsp);
static int segspt_unmap(struct seg *seg, caddr_t raddr, size_t ssize);
@@ -317,7 +317,7 @@ static int spt_anon_getpages(struct seg *seg, caddr_t addr, size_t len,
*
* The traditional default value of 5% of total memory is used, except on
* systems where that quickly gets ridiculous: in that case we clamp at a rather
- * arbitrary value of 1Gb.
+ * arbitrary value of 1GB.
*
* Note that since this is called lazily on the first sptcreate(), in theory,
* this could represent a very small value if the system is heavily loaded
diff --git a/usr/src/uts/sun4u/lw8/io/lw8.c b/usr/src/uts/sun4u/lw8/io/lw8.c
index 37703042cb..7daf8a2df3 100644
--- a/usr/src/uts/sun4u/lw8/io/lw8.c
+++ b/usr/src/uts/sun4u/lw8/io/lw8.c
@@ -163,7 +163,7 @@ static struct modlinkage modlinkage = {
struct led_info {
char id[MAX_ID_LEN];
int position;
- int status;
+ int status;
char color[MAX_COLOR_LEN];
};
@@ -367,7 +367,7 @@ lw8_attach(dev_info_t *dip, ddi_attach_cmd_t cmd)
return (DDI_FAILURE);
err = ddi_create_minor_node(dip, "lw8", S_IFCHR,
- instance, DDI_PSEUDO, NULL);
+ instance, DDI_PSEUDO, 0);
if (err != DDI_SUCCESS)
return (DDI_FAILURE);
diff --git a/usr/src/uts/sun4u/lw8/io/ntwdt.c b/usr/src/uts/sun4u/lw8/io/ntwdt.c
index d399486f8d..c2ae0575c9 100644
--- a/usr/src/uts/sun4u/lw8/io/ntwdt.c
+++ b/usr/src/uts/sun4u/lw8/io/ntwdt.c
@@ -484,7 +484,7 @@ static struct dev_ops ntwdt_ops = {
};
static struct modldrv modldrv = {
- &mod_driverops, /* This one is a driver */
+ &mod_driverops, /* This one is a driver */
"ntwdt-Netra-T12", /* Name of the module. */
&ntwdt_ops, /* Driver ops */
};
@@ -675,7 +675,7 @@ ntwdt_attach(dev_info_t *dip, ddi_attach_cmd_t cmd)
* is initialized.
*/
if (ddi_create_minor_node(dip, NTWDT_MINOR_NODE, S_IFCHR, 0,
- DDI_PSEUDO, NULL) == DDI_FAILURE) {
+ DDI_PSEUDO, 0) == DDI_FAILURE) {
cmn_err(CE_WARN, "failed to create Minor Node: %s",
NTWDT_MINOR_NODE);
goto err4;
@@ -1791,8 +1791,8 @@ ntwdt_set_awdt_state(ntwdt_wdog_t *rstatep)
static int
ntwdt_set_cfgvar(int var, int val)
{
- int rv;
- int mbox_val;
+ int rv;
+ int mbox_val;
lw8_set_wdt_t set_wdt;
switch (var) {
diff --git a/usr/src/uts/sun4u/lw8/io/sgenv.c b/usr/src/uts/sun4u/lw8/io/sgenv.c
index 7b5971bf57..a9e1de2e43 100644
--- a/usr/src/uts/sun4u/lw8/io/sgenv.c
+++ b/usr/src/uts/sun4u/lw8/io/sgenv.c
@@ -257,8 +257,8 @@ static boolean_t env_cache_update_needed = B_TRUE;
* board_cache won't change between the kstat_update and the kstat_snapshot
* which will cause problems as the update sets the ks_data_size.
*/
-static sg_board_info_t board_cache[SG_MAX_BDS] = {NULL};
-static sg_board_info_t board_cache_snapshot[SG_MAX_BDS] = {NULL};
+static sg_board_info_t board_cache[SG_MAX_BDS] = { 0 };
+static sg_board_info_t board_cache_snapshot[SG_MAX_BDS] = { 0 };
static int board_cache_updated = FALSE;
/*
@@ -546,7 +546,7 @@ sgenv_attach(dev_info_t *dip, ddi_attach_cmd_t cmd)
}
err = ddi_create_minor_node(dip, SGENV_DRV_NAME, S_IFCHR,
- instance, DDI_PSEUDO, NULL);
+ instance, DDI_PSEUDO, 0);
if (err != DDI_SUCCESS) {
sgenv_remove_kstats(softsp);
(void) sgenv_remove_cache_update_threads();
@@ -644,7 +644,7 @@ sgenv_add_kstats(sgenv_soft_state_t *softsp)
* Create the 'keyswitch position' named kstat.
*/
ksp = kstat_create(SGENV_DRV_NAME, inst, SG_KEYSWITCH_KSTAT_NAME,
- "misc", KSTAT_TYPE_NAMED, 1, NULL);
+ "misc", KSTAT_TYPE_NAMED, 1, 0);
if (ksp != NULL) {
/* initialize the named kstat */
@@ -1451,7 +1451,7 @@ sgenv_board_info_kstat_snapshot(kstat_t *ksp, void *buf, int rw)
* This function coordinates reading the env data from the SC.
*
* ERROR:
- * If an error occurs while making a call to the mailbox and we have data
+ * If an error occurs while making a call to the mailbox and we have data
* in the cache from a previous call to the SC, we return an error of 0.
* That way the kstat framework will return the old data instead of
* returning an error and an empty kstat.
@@ -2106,7 +2106,7 @@ sgenv_get_env_data(envresp_key_t key, int key_posn, uint16_t flag, int *status)
*/
static int
sgenv_handle_env_data_error(int err, int status, int key_posn,
- envresp_key_t key, char *str)
+ envresp_key_t key, char *str)
{
int rv = DDI_SUCCESS;
diff --git a/usr/src/uts/sun4u/lw8/io/sgfru.c b/usr/src/uts/sun4u/lw8/io/sgfru.c
index 431d9bfda7..c3b4a8ad28 100644
--- a/usr/src/uts/sun4u/lw8/io/sgfru.c
+++ b/usr/src/uts/sun4u/lw8/io/sgfru.c
@@ -186,7 +186,7 @@ sgfru_attach(dev_info_t *dip, ddi_attach_cmd_t cmd)
softsp->instance = instance;
error = ddi_create_minor_node(dip, SGFRU_DRV_NAME, S_IFCHR,
- instance, DDI_PSEUDO, NULL);
+ instance, DDI_PSEUDO, 0);
if (error == DDI_FAILURE) {
ddi_soft_state_free(sgfru_statep, instance);
return (DDI_FAILURE);
@@ -1525,7 +1525,7 @@ sgfru_copyin_append(const sgfru_init_arg_t *argp, append_info_t *app)
*/
static int
sgfru_copyin_buffer(const sgfru_init_arg_t *argp, const caddr_t data,
- const int cnt, char *buffer)
+ const int cnt, char *buffer)
{
static fn_t f = "sgfru_copyin_buffer";
diff --git a/usr/src/uts/sun4u/os/plat_ecc_unum.c b/usr/src/uts/sun4u/os/plat_ecc_unum.c
index e13e121086..b7145b5f5b 100644
--- a/usr/src/uts/sun4u/os/plat_ecc_unum.c
+++ b/usr/src/uts/sun4u/os/plat_ecc_unum.c
@@ -23,8 +23,6 @@
* Use is subject to license terms.
*/
-#pragma ident "%Z%%M% %I% %E% SMI"
-
#include <sys/plat_ecc_unum.h>
#include <sys/utsname.h>
#include <sys/cmn_err.h>
@@ -76,7 +74,7 @@ uint16_t ecc_indictment2_mailbox_flags = PLAT_ECC_SEND_INDICT2_DEFAULT;
*/
void
plat_log_fruid_error(int synd_code, struct async_flt *ecc, char *unum,
- uint64_t afsr_bit)
+ uint64_t afsr_bit)
{
plat_ecc_error_data_t ecc_error_data;
enum plat_ecc_type ecc_type = PLAT_ECC_UNKNOWN;
@@ -191,7 +189,7 @@ plat_log_fruid_error(int synd_code, struct async_flt *ecc, char *unum,
* cpu id.
*/
ecc_error_data.proc_num =
- plat_make_fru_cpuid(board_num, 0, proc_position);
+ plat_make_fru_cpuid(board_num, 0, proc_position);
/*
* Now pull out the Memory Bank number
@@ -218,7 +216,7 @@ plat_log_fruid_error(int synd_code, struct async_flt *ecc, char *unum,
for (i = PLAT_ECC_JNUMBER_LENGTH;
i > 0 && *unum_ptr >= '0' && *unum_ptr <= '9'; i--)
*jno_ptr++ = *unum_ptr++;
- *jno_ptr = NULL;
+ *jno_ptr = '\0';
/*
* If we get here, we can assume the unum is valid
@@ -304,7 +302,7 @@ plat_log_fruid_error(int synd_code, struct async_flt *ecc, char *unum,
for (i = PLAT_ECC_JNUMBER_LENGTH;
i > 0 && *unum_ptr >= '0' && *unum_ptr <= '9'; i--)
*jno_ptr++ = *unum_ptr++;
- *jno_ptr = NULL;
+ *jno_ptr = '\0';
/*
* If we get here, we can assume the unum is valid
diff --git a/usr/src/uts/sun4u/serengeti/io/ssm.c b/usr/src/uts/sun4u/serengeti/io/ssm.c
index ccd68ed9b5..4e5e74285c 100644
--- a/usr/src/uts/sun4u/serengeti/io/ssm.c
+++ b/usr/src/uts/sun4u/serengeti/io/ssm.c
@@ -111,7 +111,7 @@ ssm_err_callback(dev_info_t *dip, ddi_fm_error_t *derr, const void *impl_data);
*/
static int
ssm_fm_init_child(dev_info_t *dip, dev_info_t *tdip, int cap,
- ddi_iblock_cookie_t *ibc);
+ ddi_iblock_cookie_t *ibc);
/*
* init/fini routines to alloc/dealloc fm structures and
@@ -585,7 +585,7 @@ init_child(dev_info_t *child)
* Requests handled completely:
* DDI_CTLOPS_INITCHILD
* DDI_CTLOPS_UNINITCHILD
- * DDI_CTLOPS_REPORTDEV
+ * DDI_CTLOPS_REPORTDEV
* All others are passed to the parent.
* The name of the ssm node is ssm@nodeid,0.
* ssm is the equivalent of rootnex.
@@ -687,7 +687,7 @@ ssm_make_nodes(dev_info_t *dip, int instance, int ssm_nodeid)
minor_num = (instance << SSM_INSTANCE_SHIFT) | bd;
rv = ddi_create_minor_node(dip, filename, S_IFCHR,
- minor_num, DDI_NT_SBD_ATTACHMENT_POINT, NULL);
+ minor_num, DDI_NT_SBD_ATTACHMENT_POINT, 0);
if (rv == DDI_FAILURE) {
cmn_err(CE_WARN,
"ssm_make_nodes:%d: failed to create "
@@ -798,7 +798,7 @@ ssm_close(dev_t dev, int flags, int otyp, cred_t *credp)
/* ARGSUSED */
static int
ssm_ioctl(dev_t dev, int cmd, intptr_t arg, int mode, cred_t *credp,
- int *rvalp)
+ int *rvalp)
{
struct ssm_soft_state *softsp;
char *addr;
@@ -1092,7 +1092,7 @@ ssm_fm_fini(struct ssm_soft_state *softsp)
/*ARGSUSED*/
static int
ssm_fm_init_child(dev_info_t *dip, dev_info_t *tdip, int cap,
- ddi_iblock_cookie_t *ibc)
+ ddi_iblock_cookie_t *ibc)
{
struct ssm_soft_state *softsp = ddi_get_soft_state(ssm_softstates,
ddi_get_instance(dip));
diff --git a/usr/src/uts/sun4v/io/n2rng/n2rng.c b/usr/src/uts/sun4v/io/n2rng/n2rng.c
index 2b8827fd49..144d60b880 100644
--- a/usr/src/uts/sun4v/io/n2rng/n2rng.c
+++ b/usr/src/uts/sun4v/io/n2rng/n2rng.c
@@ -944,7 +944,7 @@ n2rng_check_ctl_access(n2rng_t *n2rng)
* Attempt to read control registers with invalid ID and data
* just to see if we get an access error
*/
- rv = hv_rng_ctl_read_v2(NULL, N2RNG_INVALID_ID,
+ rv = hv_rng_ctl_read_v2(0, N2RNG_INVALID_ID,
&unused_64, &unused_64, &unused_64, &unused_64);
} else {
rv = hv_rng_get_diag_control();
diff --git a/usr/src/uts/sun4v/io/n2rng/n2rng_kcf.c b/usr/src/uts/sun4v/io/n2rng/n2rng_kcf.c
index 5e101472ee..afe6cd47fe 100644
--- a/usr/src/uts/sun4v/io/n2rng/n2rng_kcf.c
+++ b/usr/src/uts/sun4v/io/n2rng/n2rng_kcf.c
@@ -23,8 +23,6 @@
* Use is subject to license terms.
*/
-#pragma ident "%Z%%M% %I% %E% SMI"
-
#include <sys/types.h>
#include <sys/uio.h>
#include <sys/stream.h>
@@ -72,7 +70,7 @@ static crypto_random_number_ops_t n2rng_rng_ops = {
static crypto_provider_management_ops_t n2rng_extinfo_op = {
ext_info, /* ext_info */
NULL, /* init_token */
- NULL, /* init_pin */
+ NULL, /* init_pin */
NULL, /* set_pin */
};
@@ -207,7 +205,7 @@ n2rng_register_provider(n2rng_t *n2rng)
} else {
cmn_err(CE_WARN,
"crypto_register_provider() failed (%d)", ret);
- n2rng->n_prov = NULL;
+ n2rng->n_prov = 0;
return (DDI_FAILURE);
}
}
@@ -236,7 +234,7 @@ n2rng_unregister_provider(n2rng_t *n2rng)
return (DDI_FAILURE);
}
}
- n2rng->n_prov = NULL;
+ n2rng->n_prov = 0;
n2rng_clrregistered(n2rng);
return (DDI_SUCCESS);
}
@@ -408,8 +406,8 @@ n2rng_provider_status(crypto_provider_handle_t provider, uint_t *status)
/*ARGSUSED*/
static int
n2rng_random_number(crypto_provider_handle_t provider,
- crypto_session_id_t sess, unsigned char *buf, size_t buflen,
- crypto_req_handle_t cfreq)
+ crypto_session_id_t sess, unsigned char *buf, size_t buflen,
+ crypto_req_handle_t cfreq)
{
n2rng_t *n2rng = (n2rng_t *)provider;
int rv;
diff --git a/usr/src/uts/sun4v/n2rng/Makefile b/usr/src/uts/sun4v/n2rng/Makefile
index ba94b5bdfb..474b4294fa 100644
--- a/usr/src/uts/sun4v/n2rng/Makefile
+++ b/usr/src/uts/sun4v/n2rng/Makefile
@@ -40,7 +40,6 @@ COM_DIR = $(COMMONBASE)/crypto
#
MODULE = n2rng
OBJECTS = $(N2RNG_OBJS:%=$(OBJS_DIR)/%)
-LINTS = $(N2RNG_OBJS:%.o=$(LINTS_DIR)/%.ln)
ROOTMODULE = $(ROOT_PSM_DRV_DIR)/$(MODULE)
CONF_SRCDIR = $(UTSBASE)/sun4v/io/n2rng
@@ -60,14 +59,9 @@ CLEANFILES += $(MODSTUBS_O)
# Define targets
#
ALL_TARGET = $(BINARY)
-LINT_TARGET = $(MODULE).lint
INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
-#
-# lint pass one enforcement
-#
CFLAGS += $(CCVERBOSE) -DN2 -I$(COM_DIR)
-LINTFLAGS += -DN2 -I$(COM_DIR)
CERRWARN += $(CNOWARN_UNINIT)
#
@@ -88,12 +82,6 @@ clean: $(CLEAN_DEPS)
clobber: $(CLOBBER_DEPS)
-lint: $(LINT_DEPS)
-
-modlintlib: $(MODLINTLIB_DEPS)
-
-clean.lint: $(CLEAN_LINT_DEPS)
-
install: $(INSTALL_DEPS)
#