diff options
author | Ian Lepore <ian@FreeBSD.org> | 2019-12-13 01:38:48 +0000 |
---|---|---|
committer | Ian Lepore <ian@FreeBSD.org> | 2019-12-13 01:38:48 +0000 |
commit | dbb7749081c20b7bff1a7351abba6b30b43ad0e4 (patch) | |
tree | 659189a2bad8e4f7c5d5ca34292087556777df7c | |
parent | bf6ac05aa37102213b64ef92ef02ed7d0b0a57c2 (diff) |
Notes
-rw-r--r-- | sys/dev/iicbus/ads111x.c | 2 | ||||
-rw-r--r-- | sys/dev/iicbus/ds13rtc.c | 3 | ||||
-rw-r--r-- | sys/dev/iicbus/iic_recover_bus.c | 3 | ||||
-rw-r--r-- | sys/dev/iicbus/iic_recover_bus.h | 3 | ||||
-rw-r--r-- | sys/dev/iicbus/isl12xx.c | 4 | ||||
-rw-r--r-- | sys/dev/iicbus/nxprtc.c | 3 | ||||
-rw-r--r-- | sys/dev/iicbus/rtc8583.c | 4 |
7 files changed, 16 insertions, 6 deletions
diff --git a/sys/dev/iicbus/ads111x.c b/sys/dev/iicbus/ads111x.c index 4e9f6c4cf0dd..1bf9b8c19334 100644 --- a/sys/dev/iicbus/ads111x.c +++ b/sys/dev/iicbus/ads111x.c @@ -1,4 +1,6 @@ /*- + * SPDX-License-Identifier: BSD-2-Clause + * * Copyright (c) 2019 Ian Lepore. * * Redistribution and use in source and binary forms, with or without diff --git a/sys/dev/iicbus/ds13rtc.c b/sys/dev/iicbus/ds13rtc.c index 2ac759d1e482..1b21c6c33d80 100644 --- a/sys/dev/iicbus/ds13rtc.c +++ b/sys/dev/iicbus/ds13rtc.c @@ -1,6 +1,7 @@ /*- + * SPDX-License-Identifier: BSD-2-Clause + * * Copyright (c) 2017 Ian Lepore <ian@freebsd.org> - * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/dev/iicbus/iic_recover_bus.c b/sys/dev/iicbus/iic_recover_bus.c index 645f823f2b2e..749dd7f40bf4 100644 --- a/sys/dev/iicbus/iic_recover_bus.c +++ b/sys/dev/iicbus/iic_recover_bus.c @@ -1,6 +1,7 @@ /*- + * SPDX-License-Identifier: BSD-2-Clause + * * Copyright (c) 2017 Ian Lepore <ian@freebsd.org> - * All rights reserved. * * Development sponsored by Microsemi, Inc. * diff --git a/sys/dev/iicbus/iic_recover_bus.h b/sys/dev/iicbus/iic_recover_bus.h index 69cdc31b7740..8cab56153ae0 100644 --- a/sys/dev/iicbus/iic_recover_bus.h +++ b/sys/dev/iicbus/iic_recover_bus.h @@ -1,6 +1,7 @@ /*- + * SPDX-License-Identifier: BSD-2-Clause + * * Copyright (c) 2017 Ian Lepore <ian@freebsd.org> - * All rights reserved. * * Development sponsored by Microsemi, Inc. * diff --git a/sys/dev/iicbus/isl12xx.c b/sys/dev/iicbus/isl12xx.c index ac59d0f777bc..b43bcb0ed27a 100644 --- a/sys/dev/iicbus/isl12xx.c +++ b/sys/dev/iicbus/isl12xx.c @@ -1,5 +1,7 @@ /*- - * Copyright (c) 2017 Ian Lepore. All rights reserved. + * SPDX-License-Identifier: BSD-2-Clause + * + * Copyright (c) 2017 Ian Lepore. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/dev/iicbus/nxprtc.c b/sys/dev/iicbus/nxprtc.c index 3f4f9e6f5eed..0e5162fcd395 100644 --- a/sys/dev/iicbus/nxprtc.c +++ b/sys/dev/iicbus/nxprtc.c @@ -1,6 +1,7 @@ /*- + * SPDX-License-Identifier: BSD-2-Clause + * * Copyright (c) 2017 Ian Lepore <ian@freebsd.org> - * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/sys/dev/iicbus/rtc8583.c b/sys/dev/iicbus/rtc8583.c index 0efed4b87372..6fb81a63d260 100644 --- a/sys/dev/iicbus/rtc8583.c +++ b/sys/dev/iicbus/rtc8583.c @@ -1,6 +1,8 @@ /*- + * SPDX-License-Identifier: BSD-2-Clause + * * Copyright (c) 2017 Hiroki Mori. All rights reserved. - * Copyright (c) 2017 Ian Lepore. All rights reserved. + * Copyright (c) 2017 Ian Lepore. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions |