diff options
-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> |