diff options
author | obrien <obrien@FreeBSD.org> | 2003-06-10 17:50:20 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2003-06-10 17:50:20 +0000 |
commit | 37ee58d3050a93505e901a60eb275e5423a3e554 (patch) | |
tree | ad19c340fb1693d6d3e7777c6509eda744ddde09 /sys/cam | |
parent | 25e30e56b8f226a36cafa572d724416caff8d8f7 (diff) | |
download | FreeBSD-src-37ee58d3050a93505e901a60eb275e5423a3e554.zip FreeBSD-src-37ee58d3050a93505e901a60eb275e5423a3e554.tar.gz |
Use __FBSDID().
Diffstat (limited to 'sys/cam')
-rw-r--r-- | sys/cam/cam.c | 7 | ||||
-rw-r--r-- | sys/cam/cam_periph.c | 5 | ||||
-rw-r--r-- | sys/cam/cam_queue.c | 6 | ||||
-rw-r--r-- | sys/cam/cam_sim.c | 5 | ||||
-rw-r--r-- | sys/cam/cam_xpt.c | 6 |
5 files changed, 18 insertions, 11 deletions
diff --git a/sys/cam/cam.c b/sys/cam/cam.c index e9e2e54..0c76d96 100644 --- a/sys/cam/cam.c +++ b/sys/cam/cam.c @@ -24,11 +24,12 @@ * LIABILITY, OR TORT (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$ */ -#include <sys/param.h> +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + +#include <sys/param.h> #ifdef _KERNEL #include <sys/param.h> #include <sys/systm.h> diff --git a/sys/cam/cam_periph.c b/sys/cam/cam_periph.c index 016e085..601c781 100644 --- a/sys/cam/cam_periph.c +++ b/sys/cam/cam_periph.c @@ -25,10 +25,11 @@ * LIABILITY, OR TORT (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$ */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include <sys/param.h> #include <sys/systm.h> #include <sys/types.h> diff --git a/sys/cam/cam_queue.c b/sys/cam/cam_queue.c index 11476f0..0c05ee2 100644 --- a/sys/cam/cam_queue.c +++ b/sys/cam/cam_queue.c @@ -24,9 +24,11 @@ * LIABILITY, OR TORT (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$ */ + +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include <sys/param.h> #include <sys/systm.h> #include <sys/types.h> diff --git a/sys/cam/cam_sim.c b/sys/cam/cam_sim.c index b7e0ec5..c11e7ea 100644 --- a/sys/cam/cam_sim.c +++ b/sys/cam/cam_sim.c @@ -24,10 +24,11 @@ * LIABILITY, OR TORT (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$ */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include <sys/param.h> #include <sys/systm.h> #include <sys/malloc.h> diff --git a/sys/cam/cam_xpt.c b/sys/cam/cam_xpt.c index fa6c63a..92cebd5 100644 --- a/sys/cam/cam_xpt.c +++ b/sys/cam/cam_xpt.c @@ -25,9 +25,11 @@ * LIABILITY, OR TORT (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$ */ + +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include <sys/param.h> #include <sys/bus.h> #include <sys/systm.h> |