| Age | Commit message (Expand) | Author |
| 2025-06-21 | newbus: replace leftover device unit wildcards | Ahmad Khalifa |
| 2025-01-02 | Use the new bus_generic_detach directly in place of home-grown versions | John Baldwin |
| 2025-01-02 | bus_generic_detach: Delete children after detaching them | John Baldwin |
| 2024-12-06 | Replace calls to bus_generic_attach with bus_attach_children | John Baldwin |
| 2024-12-06 | Replace calls to bus_generic_probe with bus_identify_children | John Baldwin |
| 2024-07-24 | newbus: globally replace device_add_child(..., -1) with DEVICE_UNIT_ANY | Warner Losh |
| 2024-01-10 | regulator: Move regulator code in dev/regulator | Emmanuel Vadot |
| 2024-01-10 | clk: Move clock code in dev/clk | Emmanuel Vadot |
| 2024-01-10 | pwm: Move allwinner driver into the common directory | Emmanuel Vadot |
| 2024-01-10 | pwm: Move rockchip driver into the common directory | Emmanuel Vadot |
| 2023-11-26 | sys: Automated cleanup of cdefs and other formatting | Warner Losh |
| 2023-08-16 | sys: Remove $FreeBSD$: one-line sh pattern | Warner Losh |
| 2023-08-16 | sys: Remove $FreeBSD$: one-line .c pattern | Warner Losh |
| 2023-08-16 | sys: Remove $FreeBSD$: two-line .h pattern | Warner Losh |
| 2023-05-12 | spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSD | Warner Losh |
| 2022-05-09 | pwm: Remove unused devclass arguments to DRIVER_MODULE. | John Baldwin |
| 2021-06-22 | newbus: Move from bus_child_{pnpinfo,location}_src to bus_child_{pnpinfo,loca... | Warner Losh |
| 2021-03-11 | usr.sbin/pwm/pwm add support for flags | Oskar Holmund |
| 2021-03-11 | share/man/man9/pwmbus.9 fix types in arguments | Oskar Holmund |
| 2021-02-24 | pwm_backlight: Add MODULE_DEPEND on backlight | Brett Mastbergen |
| 2021-01-23 | Revert "Define PNP info after defining driver modules" | Mark Johnston |
| 2021-01-21 | Define PNP info after defining driver modules | Mark Johnston |
| 2020-10-03 | pwm_backlight: Fix 32 bits build | Emmanuel Vadot |
| 2020-10-02 | Add pwm_backlight | Emmanuel Vadot |
| 2020-09-01 | pwm: clean up empty lines in .c and .h files | Mateusz Guzik |
| 2019-12-03 | Remove "all rights reserved" from copyright for the file I own. | Emmanuel Vadot |
| 2019-06-18 | Handle labels specified with hints even on FDT systems. Hints are the | Ian Lepore |
| 2019-06-18 | Remove everything related to channels from the pwmc public interface, now | Ian Lepore |
| 2019-06-17 | Put the pwmc cdev filenames under the pwm directory along with any label | Ian Lepore |
| 2019-06-17 | Add back a const qualifier I somehow fumbled away between test-building | Ian Lepore |
| 2019-06-17 | Add ofw_pwmbus to enumerate pwmbus devices on systems configured with fdt | Ian Lepore |
| 2019-06-16 | Rework pwmbus and pwmc so that each child will handle a single PWM channel. | Ian Lepore |
| 2019-06-16 | Rename pwmbus.h to ofw_pwm.h, because after all the recent changes, there | Ian Lepore |
| 2019-06-16 | This code no longer uses fdt/ofw stuff, no need to include ofw headers. | Ian Lepore |
| 2019-06-16 | Make channel number unsigned, and spell unsigned int u_int. This should | Ian Lepore |
| 2019-06-15 | Make pwm channel numbers unsigned. | Ian Lepore |
| 2019-06-15 | Restructure the pwm device hirearchy and interfaces. | Ian Lepore |
| 2019-06-15 | Destroy the cdev on device detach. Also, make the driver and devclass | Ian Lepore |
| 2019-06-15 | Rename the channel_max method to channel_count, because that's what it's | Ian Lepore |
| 2019-06-15 | Spell unsigned int as u_int and channel as chan; eliminates the need to wrap | Ian Lepore |
| 2019-06-15 | Unwrap prototype lines so that return type and function name are on the | Ian Lepore |
| 2019-06-15 | Make pwmbus driver and devclass vars static; they're not mentioned in any | Ian Lepore |
| 2019-06-15 | Use device_delete_children() instead of a locally-rolled copy of it that | Ian Lepore |
| 2019-06-15 | Remove pwmbus_attach_bus(), it no longer has any callers. Also remove a | Ian Lepore |
| 2019-06-15 | Move/rename the sys/pwm.h header file to dev/pwm/pwmc.h. The file contains | Ian Lepore |
| 2019-06-15 | Do not include pwm.h here, it is purely a userland interface file containing | Ian Lepore |
| 2018-12-14 | pwm: Convert period and duty to unsigned int | Emmanuel Vadot |
| 2018-12-12 | Add a pwm subsystem so we can configure pwm controller from kernel and userland. | Emmanuel Vadot |