From owner-cvs-src@FreeBSD.ORG Fri Jun 27 16:10:59 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E91137B401; Fri, 27 Jun 2003 16:10:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBA9943FEA; Fri, 27 Jun 2003 16:10:58 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h5RNAw0U044662; Fri, 27 Jun 2003 16:10:58 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h5RNAwcQ044658; Fri, 27 Jun 2003 16:10:58 -0700 (PDT) Message-Id: <200306272310.h5RNAwcQ044658@repoman.freebsd.org> From: Peter Wemm Date: Fri, 27 Jun 2003 16:10:58 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ips ips.c ips_commands.c ips_disk.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Jun 2003 23:10:59 -0000 peter 2003/06/27 16:10:58 PDT FreeBSD src repository Modified files: sys/dev/ips ips.c ips_commands.c ips_disk.c Log: Fix pointer/int warnings so this compiles on amd64. The driver wants to store an int in the bio->bio_driver1 (a void *). It is big enough, but you have to match the int sizes first before doing the cast. Glanced at by: scottl Revision Changes Path 1.3 +1 -1 src/sys/dev/ips/ips.c 1.3 +1 -1 src/sys/dev/ips/ips_commands.c 1.2 +2 -2 src/sys/dev/ips/ips_disk.c