From owner-svn-src-stable@FreeBSD.ORG Sun Sep 2 18:00:57 2012 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9293C1065674; Sun, 2 Sep 2012 18:00:57 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7C52B8FC0A; Sun, 2 Sep 2012 18:00:57 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q82I0v6i045328; Sun, 2 Sep 2012 18:00:57 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q82I0v9X045326; Sun, 2 Sep 2012 18:00:57 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201209021800.q82I0v9X045326@svn.freebsd.org> From: Eitan Adler Date: Sun, 2 Sep 2012 18:00:57 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r240028 - stable/8/sys/dev/aic7xxx X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Sep 2012 18:00:57 -0000 Author: eadler Date: Sun Sep 2 18:00:57 2012 New Revision: 240028 URL: http://svn.freebsd.org/changeset/base/240028 Log: MFC r239047: Remove variables which are initialized but never used thereafter reported by gcc46 warning Approved by: cperciva (implicit) Modified: stable/8/sys/dev/aic7xxx/aic_osm_lib.c Directory Properties: stable/8/sys/ (props changed) stable/8/sys/dev/ (props changed) Modified: stable/8/sys/dev/aic7xxx/aic_osm_lib.c ============================================================================== --- stable/8/sys/dev/aic7xxx/aic_osm_lib.c Sun Sep 2 17:46:46 2012 (r240027) +++ stable/8/sys/dev/aic7xxx/aic_osm_lib.c Sun Sep 2 18:00:57 2012 (r240028) @@ -54,9 +54,6 @@ aic_set_recoveryscb(struct aic_softc *ai * them after we've successfully fixed this problem. */ LIST_FOREACH(list_scb, &aic->pending_scbs, pending_links) { - union ccb *ccb; - - ccb = list_scb->io_ctx; callout_stop(&scb->io_timer); } }