From owner-cvs-all Mon Dec 18 13: 8:58 2000 From owner-cvs-all@FreeBSD.ORG Mon Dec 18 13:08:54 2000 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5AF9137B400; Mon, 18 Dec 2000 13:08:54 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id eBIL8sj42300; Mon, 18 Dec 2000 13:08:54 -0800 (PST) (envelope-from imp) Message-Id: <200012182108.eBIL8sj42300@freefall.freebsd.org> From: Warner Losh Date: Mon, 18 Dec 2000 13:08:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/examples/drivers make_device_driver.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG imp 2000/12/18 13:08:54 PST Modified files: share/examples/drivers make_device_driver.sh Log: o Add cardbus support (use pci attachment for now) o Add comments in some places to clarify some points. o Don't typedef sc_p. This isn't usually done in the drivers and may cause problems in teh future if C goes the C++ route of requiring one and only one definition for each and every type. Instead use the current convetion of expanding struct ${1}_softc * inline needed. o change some comments to be more style(9)-like. o Define and use DEV2SOFTC to encapsulate storing/getting softc from a dev_t. This also takes care of the missing cast from the examples. o Define and use DEVICE2SOFTC, similar to DEV2SOFTC for getting the softc from a device_t. We still should have this generate foo_{isa,pci,pccard,cardbus,eisa}.c and foovar.h from templates of some sort, but I was too lazy to do that in this commit. I did document it in the comments, however. Note: bde-like corrections made with the help of my my portable plastic bde icon. Results with the real bde may vary with use. Revision Changes Path 1.16 +82 -44 src/share/examples/drivers/make_device_driver.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message