Deleted Added
full compact
midi.c (166280) midi.c (166322)
1/*-
1/*-
2 * (c) 2003 Mathew Kanner
3 *
2 * Copyright (c) 2003 Mathew Kanner
4 * Copyright (c) 1998 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Lennart Augustsson (augustss@netbsd.org).
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions

--- 26 unchanged lines hidden (view full) ---

38
39 /*
40 * Parts of this file started out as NetBSD: midi.c 1.31
41 * They are mostly gone. Still the most obvious will be the state
42 * machine midi_in
43 */
44
45#include <sys/cdefs.h>
3 * Copyright (c) 1998 The NetBSD Foundation, Inc.
4 * All rights reserved.
5 *
6 * This code is derived from software contributed to The NetBSD Foundation
7 * by Lennart Augustsson (augustss@netbsd.org).
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions

--- 26 unchanged lines hidden (view full) ---

37
38 /*
39 * Parts of this file started out as NetBSD: midi.c 1.31
40 * They are mostly gone. Still the most obvious will be the state
41 * machine midi_in
42 */
43
44#include <sys/cdefs.h>
46__FBSDID("$FreeBSD: head/sys/dev/sound/midi/midi.c 166280 2007-01-27 15:55:59Z ariff $");
45__FBSDID("$FreeBSD: head/sys/dev/sound/midi/midi.c 166322 2007-01-28 20:38:07Z joel $");
47
48#include <sys/param.h>
49#include <sys/queue.h>
50#include <sys/kernel.h>
51#include <sys/lock.h>
52#include <sys/mutex.h>
53#include <sys/proc.h>
54#include <sys/signalvar.h>

--- 1462 unchanged lines hidden ---
46
47#include <sys/param.h>
48#include <sys/queue.h>
49#include <sys/kernel.h>
50#include <sys/lock.h>
51#include <sys/mutex.h>
52#include <sys/proc.h>
53#include <sys/signalvar.h>

--- 1462 unchanged lines hidden ---