diff options
Diffstat (limited to 'sys/dev/random')
-rw-r--r-- | sys/dev/random/harvest.c | 2 | ||||
-rw-r--r-- | sys/dev/random/hash.c | 2 | ||||
-rw-r--r-- | sys/dev/random/hash.h | 2 | ||||
-rw-r--r-- | sys/dev/random/nehemiah.c | 2 | ||||
-rw-r--r-- | sys/dev/random/nehemiah.h | 2 | ||||
-rw-r--r-- | sys/dev/random/probe.c | 2 | ||||
-rw-r--r-- | sys/dev/random/randomdev.c | 2 | ||||
-rw-r--r-- | sys/dev/random/randomdev.h | 2 | ||||
-rw-r--r-- | sys/dev/random/randomdev_soft.c | 2 | ||||
-rw-r--r-- | sys/dev/random/randomdev_soft.h | 2 | ||||
-rw-r--r-- | sys/dev/random/yarrow.c | 2 | ||||
-rw-r--r-- | sys/dev/random/yarrow.h | 2 |
12 files changed, 12 insertions, 12 deletions
diff --git a/sys/dev/random/harvest.c b/sys/dev/random/harvest.c index d78306524ff98..d5bc44d8f06d7 100644 --- a/sys/dev/random/harvest.c +++ b/sys/dev/random/harvest.c @@ -26,7 +26,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/sys/dev/random/harvest.c,v 1.25.16.1 2008/10/02 02:57:24 kensmith Exp $"); #include <sys/param.h> #include <sys/kthread.h> diff --git a/sys/dev/random/hash.c b/sys/dev/random/hash.c index 611f866c42426..74f2be8464cdc 100644 --- a/sys/dev/random/hash.c +++ b/sys/dev/random/hash.c @@ -26,7 +26,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/sys/dev/random/hash.c,v 1.13.16.1 2008/10/02 02:57:24 kensmith Exp $"); #include <sys/param.h> #include <sys/systm.h> diff --git a/sys/dev/random/hash.h b/sys/dev/random/hash.h index 8580d145d6832..34e9c57f20d84 100644 --- a/sys/dev/random/hash.h +++ b/sys/dev/random/hash.h @@ -23,7 +23,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. * - * $FreeBSD$ + * $FreeBSD: src/sys/dev/random/hash.h,v 1.5.24.1 2008/10/02 02:57:24 kensmith Exp $ */ #define KEYSIZE 32 /* (in bytes) 32 bytes == 256 bits */ diff --git a/sys/dev/random/nehemiah.c b/sys/dev/random/nehemiah.c index 3001b2030e11b..95fac74043017 100644 --- a/sys/dev/random/nehemiah.c +++ b/sys/dev/random/nehemiah.c @@ -26,7 +26,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/sys/dev/random/nehemiah.c,v 1.3.2.1.8.1 2008/10/02 02:57:24 kensmith Exp $"); #include <sys/param.h> #include <sys/time.h> diff --git a/sys/dev/random/nehemiah.h b/sys/dev/random/nehemiah.h index b35fb3fb2262f..6b9719fcb35d2 100644 --- a/sys/dev/random/nehemiah.h +++ b/sys/dev/random/nehemiah.h @@ -23,7 +23,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. * - * $FreeBSD$ + * $FreeBSD: src/sys/dev/random/nehemiah.h,v 1.1.24.1 2008/10/02 02:57:24 kensmith Exp $ */ extern struct random_systat random_nehemiah; diff --git a/sys/dev/random/probe.c b/sys/dev/random/probe.c index 55b197498c28b..5663095dcffec 100644 --- a/sys/dev/random/probe.c +++ b/sys/dev/random/probe.c @@ -26,7 +26,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/sys/dev/random/probe.c,v 1.4.2.1.6.1 2008/10/02 02:57:24 kensmith Exp $"); #include <sys/types.h> #include <sys/param.h> diff --git a/sys/dev/random/randomdev.c b/sys/dev/random/randomdev.c index 29aac5fe1f8fe..7ef638c06e412 100644 --- a/sys/dev/random/randomdev.c +++ b/sys/dev/random/randomdev.c @@ -26,7 +26,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/sys/dev/random/randomdev.c,v 1.59.2.1.8.2 2008/11/24 17:39:39 cperciva Exp $"); #include <sys/param.h> #include <sys/systm.h> diff --git a/sys/dev/random/randomdev.h b/sys/dev/random/randomdev.h index 2529a82ec710e..37e08f3f808b3 100644 --- a/sys/dev/random/randomdev.h +++ b/sys/dev/random/randomdev.h @@ -23,7 +23,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. * - * $FreeBSD$ + * $FreeBSD: src/sys/dev/random/randomdev.h,v 1.6.8.1.8.1 2008/10/02 02:57:24 kensmith Exp $ */ /* This header contains only those definitions that are global diff --git a/sys/dev/random/randomdev_soft.c b/sys/dev/random/randomdev_soft.c index 2953d1891e850..1fabbade76e5f 100644 --- a/sys/dev/random/randomdev_soft.c +++ b/sys/dev/random/randomdev_soft.c @@ -27,7 +27,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/sys/dev/random/randomdev_soft.c,v 1.11.2.2.6.2 2008/11/24 17:39:39 cperciva Exp $"); #include <sys/param.h> #include <sys/systm.h> diff --git a/sys/dev/random/randomdev_soft.h b/sys/dev/random/randomdev_soft.h index 489d45a3c5fda..af7c2aef3f583 100644 --- a/sys/dev/random/randomdev_soft.h +++ b/sys/dev/random/randomdev_soft.h @@ -23,7 +23,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. * - * $FreeBSD$ + * $FreeBSD: src/sys/dev/random/randomdev_soft.h,v 1.1.8.1.8.1 2008/10/02 02:57:24 kensmith Exp $ */ /* This header contains only those definitions that are global diff --git a/sys/dev/random/yarrow.c b/sys/dev/random/yarrow.c index b10bd0d0ffcf5..05c513cb95d23 100644 --- a/sys/dev/random/yarrow.c +++ b/sys/dev/random/yarrow.c @@ -26,7 +26,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/sys/dev/random/yarrow.c,v 1.45.2.2.2.1 2008/10/02 02:57:24 kensmith Exp $"); #include <sys/param.h> #include <sys/kernel.h> diff --git a/sys/dev/random/yarrow.h b/sys/dev/random/yarrow.h index 558354d27f737..9794aca24cd69 100644 --- a/sys/dev/random/yarrow.h +++ b/sys/dev/random/yarrow.h @@ -23,7 +23,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. * - * $FreeBSD$ + * $FreeBSD: src/sys/dev/random/yarrow.h,v 1.18.24.1 2008/10/02 02:57:24 kensmith Exp $ */ /* This contains Yarrow-specific declarations. |