]> Zhao Yanbai Git Server - minix.git/commitdiff
Code cleanup: remove unused #include, variables and code,
authorKees van Reeuwijk <reeuwijk@few.vu.nl>
Thu, 15 Apr 2010 18:49:36 +0000 (18:49 +0000)
committerKees van Reeuwijk <reeuwijk@few.vu.nl>
Thu, 15 Apr 2010 18:49:36 +0000 (18:49 +0000)
21 files changed:
boot/boot.c
commands/ash/error.c
drivers/audio/es1370/es1370.c
drivers/audio/es1371/es1371.c
drivers/dec21140A/dec21140A.c
drivers/dp8390/dp8390.c
drivers/dpeth/8390.c
drivers/dpeth/dp.c
drivers/dpeth/dp.h
drivers/e1000/e1000.c
drivers/filter/driver.c
drivers/fxp/fxp.c
drivers/lance/lance.c
drivers/log/log.c
drivers/orinoco/orinoco.c
drivers/pci/main.c
drivers/pci/pci.c
drivers/rtl8139/rtl8139.c
drivers/rtl8169/rtl8169.c
drivers/tty/console.c
kernel/system/do_safecopy.c

index 5e613973b616323da917b7230a88ef551c423099..c72838fc1f48b101550546cc98a042270572a4b2 100644 (file)
@@ -1494,7 +1494,7 @@ static void ls(char *dir)
        }
        (void) r_readdir(name); /* Skip ".." too. */
 
-       while ((ino= r_readdir(name)) != 0) printf("%s/%s\n", dir, name);
+       while (r_readdir(name) != 0) printf("%s/%s\n", dir, name);
 }
 
 static u32_t milli_time(void)
index a24807e4483d0a01f0479c712d29baebff72ffce..a56d0f228f61bee9033d1c0a055ec81d1683f380 100644 (file)
@@ -49,13 +49,10 @@ __FBSDID("$FreeBSD: src/bin/sh/error.c,v 1.25 2004/04/06 20:06:51 markm Exp $");
 #include "options.h"
 #include "output.h"
 #include "error.h"
-#include "nodes.h" /* show.h needs nodes.h */
-#include "show.h"
 #include "trap.h"
 #include <signal.h>
 #include <stdlib.h>
 #include <unistd.h>
-#include <errno.h>
 #include <sys/types.h>
 
 
index 3832f66621ab8fdd508534cc0f33cad8e60cdb72..c690dee17453d200fad3193ce09e3323d729e565 100644 (file)
@@ -620,7 +620,8 @@ PRIVATE int get_samples_in_buf (u32_t *samples_in_buf, int *len, int chan) {
                default: return EINVAL;
        }
 
-       samp_ct = pci_inw(reg(samp_ct_reg));
+       /* TODO: is this inw useful? */
+       (void) pci_inw(reg(samp_ct_reg));
        curr_samp_ct = pci_inw(reg(curr_samp_ct_reg));
 
        *samples_in_buf = (u32_t) (sub_dev[chan].BufLength * 8192) + 
index a65a6d1c44ae356efad4a1edd4bac9f025520d9a..9ac2fc121c2df69d2c65bc12ef596ded73dbbb4e 100644 (file)
@@ -622,7 +622,8 @@ PRIVATE int get_samples_in_buf (u32_t *samples_in_buf, int *len, int chan) {
                default: return EINVAL;
        }
 
-       samp_ct = pci_inw(reg(samp_ct_reg));
+       /* TODO: is this statement useful? */
+       (void) pci_inw(reg(samp_ct_reg));
        curr_samp_ct = pci_inw(reg(curr_samp_ct_reg));
 
        *samples_in_buf = (u32_t) (sub_dev[chan].BufLength * 8192) + 
index a9f3b60f58fd96d06c078edf0151b95c8802a615..1ac73f2e34d190d4ef51c09c9a5f35e21d06ec3a 100644 (file)
@@ -156,7 +156,6 @@ PRIVATE void sef_local_startup()
 PRIVATE int sef_cb_init_fresh(int type, sef_init_info_t *UNUSED(info))
 {
 /* Initialize the DEC 21140A driver. */
-  int r;
   int fkeys, sfkeys;
 
   (progname=strrchr(env_argv[0],'/')) ? progname++ : (progname=env_argv[0]);
index 9c152ce8003ca7a2c56ec5fe752c77cca99f6447..ad15fe05419a066a429481fc7e1bdfaa924c136b 100644 (file)
@@ -318,7 +318,7 @@ PRIVATE void sef_local_startup()
 PRIVATE int sef_cb_init_fresh(int type, sef_init_info_t *UNUSED(info))
 {
 /* Initialize the dp8390 driver. */
-       int i, r;
+       int i;
        dpeth_t *dep;
        long v;
 
@@ -879,8 +879,7 @@ dpeth_t *dep;
 /*===========================================================================*
  *                             do_getstat                                   *
  *===========================================================================*/
-static void do_getstat(mp)
-message *mp;
+static void do_getstat(message *mp)
 {
        int port, r;
        dpeth_t *dep;
index 51a2004665cc63cf5df4b9e6939e27fc1a3bc157..5240844ba5b45de6db4e19bc51edcd89ca01383a 100644 (file)
@@ -89,12 +89,12 @@ static void mem_getblock(dpeth_t *dep, u16_t offset, int size, void *dst)
 */
 static void mem_nic2user(dpeth_t * dep, int pageno, int pktsize)
 {
+  panic("mem_nic2user: not converted to safecopies");
+#if 0
   phys_bytes offset;
   iovec_dat_s_t *iovp = &dep->de_read_iovec;
   int bytes, ix = 0;
 
-  panic("mem_nic2user: not converted to safecopies");
-#if 0
 
   /* Computes shared memory address (skipping receive header) */
   offset = pageno * DP_PAGESIZE + sizeof(dp_rcvhdr_t);
index 927848ac00bc56fab6a81dfbe72620bdfc3c3911..e536f9f5ac9065eb1f12fdafe4a9ec1117cadcc4 100644 (file)
@@ -283,7 +283,6 @@ static void do_init(const message * mp)
   dpeth_t *dep;
   dp_conf_t *dcp;
   message reply_mess;
-  const char *portname;
 
   port = mp->DL_PORT;
   if (port >= 0 && port < DE_PORT_NR) {
@@ -292,7 +291,6 @@ static void do_init(const message * mp)
        dcp = &dp_conf[port];
        strcpy(dep->de_name, DevName);
        dep->de_name[4] = '0' + port;
-       portname = dep->de_name;
 
        if (dep->de_mode == DEM_DISABLED) {
 
@@ -345,7 +343,6 @@ static void do_init(const message * mp)
 
   } else {                     /* Port number is out of range */
        port = ENXIO;
-       portname = "(illegal dpeth port)";
   }
 
   reply_mess.m_type = DL_CONF_REPLY;
@@ -667,7 +664,7 @@ PRIVATE void sef_local_startup()
 PRIVATE int sef_cb_init_fresh(int type, sef_init_info_t *UNUSED(info))
 {
 /* Initialize the dpeth driver. */
-  int r, rc, fkeys, sfkeys;
+  int fkeys, sfkeys;
 
   (progname=strrchr(env_argv[0],'/')) ? progname++ : (progname=env_argv[0]);
 
index a0ec2d765f3ce8ba7b1f1158d4917cc8449919c7..836346b9d1351fafef6726e7523e9205e65ad171 100644 (file)
@@ -279,7 +279,7 @@ int wdeth_probe(dpeth_t * dep);
 #endif
 
 #define lock()  (++dep->de_int_pending,sys_irqdisable(&dep->de_hook))
-#define unlock() do{int i=(--dep->de_int_pending)?0:sys_irqenable(&dep->de_hook);}while(0)
+#define unlock() do{int i=(--dep->de_int_pending)?0:sys_irqenable(&dep->de_hook);(void) i;}while(0)
 #define milli_delay(t) tickdelay(1)
 
 /** dp.h **/
index e328ae75716b6d9b7148ec075883a3d3d88f83a9..214ef69fd0a104fe9b1cf4a01f7e13cef4cd3188 100644 (file)
@@ -248,7 +248,7 @@ PRIVATE int e1000_probe(e1000_t *e)
     int i, r, devind;
     u16_t vid, did;
     u32_t status[2];
-    u32_t gfpreg, sector_base_addr, sector_end_addr;
+    u32_t gfpreg, sector_base_addr;
     char *dname;
 
     E1000_DEBUG(3, ("%s: probe()\n", e->name));
@@ -338,12 +338,9 @@ PRIVATE int e1000_probe(e1000_t *e)
 
        gfpreg = E1000_READ_FLASH_REG(e, ICH_FLASH_GFPREG);
         /*
-         * sector_X_addr is a "sector"-aligned address (4096 bytes)
-         * Add 1 to sector_end_addr since this sector is included in
-         * the overall size.
+         * sector_base_addr is a "sector"-aligned address (4096 bytes)
          */
         sector_base_addr = gfpreg & FLASH_GFPREG_BASE_MASK;
-        sector_end_addr = ((gfpreg >> 16) & FLASH_GFPREG_BASE_MASK) + 1;
 
         /* flash_base_addr is byte-aligned */
         e->flash_base_addr = sector_base_addr << FLASH_SECTOR_ADDR_SHIFT;
index 4738ef99a3d8d0af2a55e8b1b37886cc95cbac96..77582b3c36d21036c3513e0774ba5b628e6691c3 100644 (file)
@@ -419,8 +419,7 @@ static void restart_driver(int which, int tell_rs)
         */
        message msg;
        int ipc_status;
-       endpoint_t endpt;
-       int r, w = 0;
+       int r;
 
        if (tell_rs) {
                /* Tell RS to refresh or restart the driver */
index 09aa88e6f93018a90b60a8ece4f0423b164ccb67..e38063f1f8087b9f0cb6919b2e09e94a3469d6ef 100644 (file)
@@ -722,8 +722,7 @@ static int fxp_probe(fxp_t *fp)
 /*===========================================================================*
  *                             fxp_conf_hw                                  *
  *===========================================================================*/
-static void fxp_conf_hw(fp)
-fxp_t *fp;
+static void fxp_conf_hw(fxp_t *fp)
 {
        int i;
        int mwi, ext_stat1, ext_stat2, lim_fifo, i82503, fc;
index 10eb68f07ced9d0d70389d5c00bf1aa1aedb1530..10ef1e4dc358c8381c2715989026c2ca11ec4720 100644 (file)
@@ -1472,7 +1472,6 @@ ether_card_t *ec;
    int devind, just_one, i, r;
 
    u16_t vid, did;
-   char *dname;
 
    if ((ec->ec_pcibus | ec->ec_pcidev | ec->ec_pcifunc) != 0)
    {
@@ -1528,10 +1527,6 @@ ether_card_t *ec;
          return 0;
    }
 
-   dname= pci_dev_name(vid, did);
-   if (!dname)
-      dname= "unknown device";
-
    pci_reserve(devind);
 
    getAddressing(devind, ec);
index 79dddd3034d59bf7e2618a99855cd631803bb6b5..a2e72ec42e219812bd6d75df7c4d87c5b0be1870 100644 (file)
@@ -299,7 +299,6 @@ unsigned nr_req;            /* length of request vector */
 /* Read or write one the driver's minor devices. */
   unsigned count;
   vir_bytes user_vir;
-  struct device *dv;
   int accumulated_read = 0;
   struct logdevice *log;
   size_t vir_offset = 0;
@@ -308,7 +307,6 @@ unsigned nr_req;            /* length of request vector */
        return EIO;
 
   /* Get minor device number and check for /dev/null. */
-  dv = &log_geom[log_device];
   log = &logdevices[log_device];
 
   while (nr_req > 0) {
index 61c8e53107e3ebde94144138e966e82af0b87bb1..eb58bfb4a8d551e4a3f067d31d9a1a69e05a8f56 100644 (file)
@@ -1507,18 +1507,15 @@ suspend_write:
  * Write data which is denoted by the message to the card and send it.       *
  *****************************************************************************/
 static void or_writev_s (message * mp, int from_int) {
-       int port, or_client, count, size, err, data_len, data_off, tx_head;
+       int port, or_client, count, size, err, data_len, data_off;
        int o, j, n, i, s, p, cps ;
        struct ethhdr *eh;
        t_or *orp;
-       clock_t timebefore, t0; 
-       phys_bytes phys_user;
        hermes_t *hw;
        struct hermes_tx_descriptor desc;
        int iov_offset = 0;
        struct header_struct hdr;
        iovec_s_t *iovp;
-       phys_bytes phys_databuf;
        u16_t txfid;
 
        /* We need space for the max packet size itself, plus an ethernet
index 64812764d67db10b617221ca536ffd1562f73758..11f53c05596de98adef6d8129e0d900bbac3193c 100644 (file)
@@ -150,8 +150,7 @@ message *mp;
        }
 }
 
-PRIVATE void do_next_dev(mp)
-message *mp;
+PRIVATE void do_next_dev(message *mp)
 {
        int r, devind;
        u16_t vid, did;
index 6362ce4f900584f48c9892ef7b03b514d4653b34..759ec5e494a727c70c929398cfdd24c60d6fffd8 100644 (file)
@@ -295,7 +295,7 @@ PUBLIC int pci_first_dev_a(
   u16_t *didp
 )
 {
-       int i, devind;
+       int devind;
 
        for (devind= 0; devind < nr_pcidev; devind++)
        {
@@ -2279,12 +2279,8 @@ PRIVATE void pcibr_cb_wsts(int busind, u16_t value)
 /*===========================================================================*
  *                             pcibr_via_rsts                               *
  *===========================================================================*/
-PRIVATE u16_t pcibr_via_rsts(busind)
-int busind;
+PRIVATE u16_t pcibr_via_rsts(int busind)
 {
-       int devind;
-       devind= pcibus[busind].pb_devind;
-
        return 0;
 }
 
index 3be5331e59755659f4f473fb5d79c47570bd2271..9da970e266328101114d950e1d941a48f549f6f5 100644 (file)
@@ -2407,8 +2407,7 @@ static void do_hard_int(void)
 /*===========================================================================*
  *                             rl_handler                                   *
  *===========================================================================*/
-static int rl_handler(rep)
-re_t *rep;
+static int rl_handler(re_t *rep)
 {
        int i, port, tx_head, tx_tail, link_up;
        u16_t isr, tsad;
index 8b84edcfde2317e94825c1ea5e7eb5a49505ba46..a21298189a337498e5e2ba8e8304556424642370 100644 (file)
@@ -368,7 +368,6 @@ PRIVATE void sef_local_startup()
 PRIVATE int sef_cb_init_fresh(int type, sef_init_info_t *UNUSED(info))
 {
 /* Initialize the rtl8169 driver. */
-       int r;
        re_t *rep;
        long v;
 
index 985f5608a13fffa9225b337c66d1fe3b3587e209..4c4975d78b9b9721787fcbfd21ae349e819d539c 100644 (file)
@@ -965,7 +965,7 @@ tty_t *tp;
   /* Get the BIOS parameters that describe the VDU. */
   if (! vdu_initialized++) {
 
-       /* How about error checking? What to do on failure??? */
+       /* FIXME: How about error checking? What to do on failure??? */
        s=sys_readbios(VDU_SCREEN_COLS_ADDR, &bios_columns,
                VDU_SCREEN_COLS_SIZE);
        s=sys_readbios(VDU_CRT_BASE_ADDR, &bios_crtbase,
index 6cf85397a99879dc0eaf425a493f7a33fde1e2cf..ff4fd93e3fbe6087eba8657f6095e434f41af6fa 100644 (file)
@@ -47,7 +47,7 @@ endpoint_t *e_granter;                /* new granter (magic grants) */
        static cp_grant_t g;
        static int proc_nr;
        static const struct proc *granter_proc;
-       int r, depth = 0;
+       int depth = 0;
 
        do {
                /* Get granter process slot (if valid), and check range of
@@ -86,9 +86,9 @@ endpoint_t *e_granter;                /* new granter (magic grants) */
                 * (presumably) set an invalid grant table entry by returning
                 * EPERM, just like with an invalid grant id.
                 */
-               if((r=data_copy(granter,
+               if(data_copy(granter,
                        priv(granter_proc)->s_grant_table + sizeof(g)*grant,
-                       KERNEL, (vir_bytes) &g, sizeof(g))) != OK) {
+                       KERNEL, (vir_bytes) &g, sizeof(g)) != OK) {
                        printf(
                        "verify_grant: grant verify: data_copy failed\n");
                        return EPERM;