aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAhmad Khalifa <vexeduxr@FreeBSD.org>2025-08-13 11:14:24 +0000
committerAhmad Khalifa <vexeduxr@FreeBSD.org>2025-08-13 11:14:24 +0000
commitf13e8ea08310fe8a0d8bc7817ae428939f8e5144 (patch)
tree25e8f68756cf038420485ded4a253c9f12587db2
parentc063fb7accae4cbe5e0fb808a1382600dc1b4249 (diff)
bump FreeBSD_version to 1500060 for gpiobus changes
Bump FreeBSD_version and add UPDATING entry for gpiobus changes. Reviewed by: imp Approved by: imp (mentor) Differential Revision: https://reviews.freebsd.org/D51579
-rw-r--r--UPDATING6
-rw-r--r--sys/sys/param.h2
2 files changed, 7 insertions, 1 deletions
diff --git a/UPDATING b/UPDATING
index 78562d021e37..c4452354b189 100644
--- a/UPDATING
+++ b/UPDATING
@@ -27,6 +27,12 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 15.x IS SLOW:
world, or to merely disable the most expensive debugging functionality
at runtime, run "ln -s 'abort:false,junk:false' /etc/malloc.conf".)
+20250813:
+ The gpiobus_attach_bus() function has been removed. Drivers should now
+ use the gpiobus_add_bus() function instead. The difference being that
+ gpiobus_add_bus() doesn't call bus_attach_children(), calling it will
+ be the responsibility of the caller now.
+
20250810:
Support for Secure RPC DES authentication has been removed.
The keyserv(8) daemon was already removed, but support for it in libc
diff --git a/sys/sys/param.h b/sys/sys/param.h
index b9942c7bc2fd..c410a6ee666f 100644
--- a/sys/sys/param.h
+++ b/sys/sys/param.h
@@ -74,7 +74,7 @@
* cannot include sys/param.h and should only be updated here.
*/
#undef __FreeBSD_version
-#define __FreeBSD_version 1500059
+#define __FreeBSD_version 1500060
/*
* __FreeBSD_kernel__ indicates that this system uses the kernel of FreeBSD,