aboutsummaryrefslogtreecommitdiff
path: root/sys/pccard
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1999-05-30 16:53:49 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1999-05-30 16:53:49 +0000
commit4e2f199e0c9ada1b226f685a848abb1420a1ff8f (patch)
treec7dba053fd70eed731104c273f0605d351ea65cd /sys/pccard
parent7a1c7bc99f36d929470a570884dcdacb005fd08f (diff)
downloadsrc-4e2f199e0c9ada1b226f685a848abb1420a1ff8f.tar.gz
src-4e2f199e0c9ada1b226f685a848abb1420a1ff8f.zip
This commit should be a extensive NO-OP:
Reformat and initialize correctly all "struct cdevsw". Initialize the d_maj and d_bmaj fields. The d_reset field was not removed, although it is never used. I used a program to do most of this, so all the files now use the same consistent format. Please keep it that way. Vinum and i4b not modified, patches emailed to respective authors.
Notes
Notes: svn path=/head/; revision=47625
Diffstat (limited to 'sys/pccard')
-rw-r--r--sys/pccard/pccard.c27
1 files changed, 22 insertions, 5 deletions
diff --git a/sys/pccard/pccard.c b/sys/pccard/pccard.c
index 2d317f582a83..100f7f583ba1 100644
--- a/sys/pccard/pccard.c
+++ b/sys/pccard/pccard.c
@@ -28,7 +28,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: pccard.c,v 1.77 1999/05/02 04:19:27 nate Exp $
+ * $Id: pccard.c,v 1.78 1999/05/04 15:43:02 wpaul Exp $
*/
#include "opt_devfs.h"
@@ -138,10 +138,27 @@ static d_ioctl_t crdioctl;
static d_poll_t crdpoll;
#define CDEV_MAJOR 50
-static struct cdevsw crd_cdevsw =
- { crdopen, crdclose, crdread, crdwrite, /*50*/
- crdioctl, nostop, nullreset, nodevtotty,/* pcmcia */
- crdpoll, nommap, NULL, "crd", NULL, -1 };
+static struct cdevsw crd_cdevsw = {
+ /* open */ crdopen,
+ /* close */ crdclose,
+ /* read */ crdread,
+ /* write */ crdwrite,
+ /* ioctl */ crdioctl,
+ /* stop */ nostop,
+ /* reset */ noreset,
+ /* devtotty */ nodevtotty,
+ /* poll */ crdpoll,
+ /* mmap */ nommap,
+ /* strategy */ nostrategy,
+ /* name */ "crd",
+ /* parms */ noparms,
+ /* maj */ CDEV_MAJOR,
+ /* dump */ nodump,
+ /* psize */ nopsize,
+ /* flags */ 0,
+ /* maxio */ 0,
+ /* bmaj */ -1
+};
/*