代码搜索:DEV
找到约 10,000 项符合「DEV」的源代码
代码结果 10,000
www.eeworm.com/read/128531/5987310
c spaceball.c
/*
* $Id: spaceball.c,v 1.8 2000/11/23 11:42:39 vojtech Exp $
*
* Copyright (c) 1999-2000 Vojtech Pavlik
*
* Based on the work of:
* David Thompson
* Joseph Krahn
*
* Sponsored by SuSE
www.eeworm.com/read/128531/5987371
h drm_lock.h
/* lock.c -- IOCTLs for locking -*- linux-c -*-
* Created: Tue Feb 2 08:37:54 1999 by faith@valinux.com
*
* Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
* Copyright 2000 VA Linux Sy
www.eeworm.com/read/128531/5987699
c commctrl.c
/*
* Adaptec AAC series RAID controller driver
* (c) Copyright 2001 Red Hat Inc.
*
* based on the old aacraid driver that is..
* Adaptec aacraid device driver for Linux.
*
* C
www.eeworm.com/read/128531/5987973
c orinoco_pci.c
/* orinoco_pci.c 0.13d
*
* Driver for Prism II devices that have a direct PCI interface
* (i.e., not in a Pcmcia or PLX bridge)
*
* Specifically here we're talking about the Linksys WMP11
*
*
www.eeworm.com/read/128531/5988038
c e100_test.c
/*******************************************************************************
Copyright(c) 1999 - 2004 Intel Corporation. All rights reserved.
This program is free software; you can redi
www.eeworm.com/read/128531/5988139
c x25_asy.c
/*
* Things to sort out:
*
* o tbusy handling
* o allow users to set the parameters
* o sync/async switching ?
*
* Note: This does _not_ implement CCITT X.25 asynchronous framing
* recommendat
www.eeworm.com/read/128531/5988176
c hdlc_fr.c
/*
* Generic HDLC support routines for Linux
* Frame Relay support
*
* Copyright (C) 1999 - 2003 Krzysztof Halasa
*
* This program is free software; you can redistribute it and/o
www.eeworm.com/read/128531/5988213
c comx-proto-lapb.c
/*
* LAPB protocol module for the COMX driver
* for Linux kernel 2.2.X
*
* Original author: Tivadar Szemethy
* Maintainer: Gergely Madarasz
*
* Copyright (C) 1997-1
www.eeworm.com/read/128531/5989291
serial_uart
The SA1100 serial port had its major/minor numbers officially assigned:
> Date: Sun, 24 Sep 2000 21:40:27 -0700
> From: H. Peter Anvin
> To: Nicolas Pitre
> Cc: Dev
www.eeworm.com/read/128531/5989317
makedev
#!/bin/bash
function makedev () {
for dev in 0 1 2 3; do
echo "/dev/$1$dev: char 81 $[ $2 + $dev ]"
rm -f /dev/$1$dev
mknod /dev/$1$dev c 81 $[ $2 + $dev ]
chmod 666 /dev/$1$dev
done
# s