Author: marius
Date: Thu May 30 00:11:22 2013
New Revision: 251115
URL: http://svnweb.freebsd.org/changeset/base/251115

Log:
  - Remove pointless returns.
  - Make cm_data a void pointer and cm_flags unsigned as appropriate.
  
  MFC after:    3 days

Modified:
  head/sys/dev/aac/aac.c
  head/sys/dev/aac/aac_cam.c
  head/sys/dev/aac/aac_disk.c
  head/sys/dev/aac/aacvar.h

Modified: head/sys/dev/aac/aac.c
==============================================================================
--- head/sys/dev/aac/aac.c      Wed May 29 23:56:49 2013        (r251114)
+++ head/sys/dev/aac/aac.c      Thu May 30 00:11:22 2013        (r251115)
@@ -379,8 +379,6 @@ aac_add_event(struct aac_softc *sc, stru
                    event->ev_type);
                break;
        }
-
-       return;
 }
 
 /*
@@ -1631,8 +1629,6 @@ aac_map_command_sg(void *arg, bus_dma_se
                        aac_requeue_ready(cm);
                }
        }
-
-       return;
 }
 
 /*
@@ -2362,7 +2358,6 @@ aac_timeout(struct aac_softc *sc)
                                      "longer running! code= 0x%x\n", code);
                }
        }
-       return;
 }
 
 /*
@@ -3372,8 +3367,6 @@ aac_handle_aif(struct aac_softc *sc, str
        /* Wakeup any poll()ers */
        selwakeuppri(&sc->rcv_select, PRIBIO);
        mtx_unlock(&sc->aac_aifq_lock);
-
-       return;
 }
 
 /*
@@ -3788,6 +3781,4 @@ aac_get_bus_info(struct aac_softc *sc)
 
        if (found)
                bus_generic_attach(sc->aac_dev);
-
-       return;
 }

Modified: head/sys/dev/aac/aac_cam.c
==============================================================================
--- head/sys/dev/aac/aac_cam.c  Wed May 29 23:56:49 2013        (r251114)
+++ head/sys/dev/aac/aac_cam.c  Thu May 30 00:11:22 2013        (r251115)
@@ -163,8 +163,6 @@ aac_cam_event(struct aac_softc *sc, stru
                    event->ev_type);
                break;
        }
-
-       return;
 }
 
 static int
@@ -515,8 +513,6 @@ aac_cam_action(struct cam_sim *sim, unio
 
        aac_enqueue_ready(cm);
        aac_startio(cm->cm_sc);
-
-       return;
 }
 
 static void
@@ -625,8 +621,6 @@ aac_cam_complete(struct aac_command *cm)
 
        aac_release_command(cm);
        xpt_done(ccb);
-
-       return;
 }
 
 static u_int32_t

Modified: head/sys/dev/aac/aac_disk.c
==============================================================================
--- head/sys/dev/aac/aac_disk.c Wed May 29 23:56:49 2013        (r251114)
+++ head/sys/dev/aac/aac_disk.c Thu May 30 00:11:22 2013        (r251115)
@@ -167,8 +167,6 @@ aac_disk_strategy(struct bio *bp)
        mtx_lock(&sc->ad_controller->aac_io_lock);
        aac_submit_bio(bp);
        mtx_unlock(&sc->ad_controller->aac_io_lock);
-
-       return;
 }
 
 /*

Modified: head/sys/dev/aac/aacvar.h
==============================================================================
--- head/sys/dev/aac/aacvar.h   Wed May 29 23:56:49 2013        (r251114)
+++ head/sys/dev/aac/aacvar.h   Thu May 30 00:11:22 2013        (r251115)
@@ -158,13 +158,13 @@ struct aac_command
        struct aac_fib          *cm_fib;        /* FIB associated with this
                                                 * command */
        u_int64_t               cm_fibphys;     /* bus address of the FIB */
-       struct bio              *cm_data;       /* pointer to data in kernel
+       void                    *cm_data;       /* pointer to data in kernel
                                                 * space */
        u_int32_t               cm_datalen;     /* data length */
        bus_dmamap_t            cm_datamap;     /* DMA map for bio data */
        struct aac_sg_table     *cm_sgtable;    /* pointer to s/g table in
                                                 * command */
-       int                     cm_flags;
+       u_int                   cm_flags;
 #define AAC_CMD_MAPPED         (1<<0)          /* command has had its data
                                                 * mapped */
 #define AAC_CMD_DATAIN         (1<<1)          /* command involves data moving
@@ -182,7 +182,7 @@ struct aac_command
 #define AAC_QUEUE_FRZN         (1<<9)          /* Freeze the processing of
                                                 * commands on the queue. */
 
-       void                    (* cm_complete)(struct aac_command *cm);
+       void                    (*cm_complete)(struct aac_command *cm);
        void                    *cm_private;
        time_t                  cm_timestamp;   /* command creation time */
        int                     cm_queue;
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to