aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/iicbus/mux/pca9547.c
Commit message (Collapse)AuthorAgeFilesLines
* Replace calls to bus_generic_attach with bus_attach_childrenJohn Baldwin2024-12-061-1/+1
| | | | | Reviewed by: imp Differential Revision: https://reviews.freebsd.org/D47675
* sys: Remove $FreeBSD$: one-line .c patternWarner Losh2023-08-161-2/+0
| | | | Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
* iicbus: Remove unused devclass arguments to DRIVER_MODULE.John Baldwin2022-05-061-2/+1
|
* Remove unused ofw_iicbus_devclass.John Baldwin2022-05-061-2/+1
|
* Remove unused iicbus_devclass.John Baldwin2022-05-061-1/+1
|
* Revert "Define PNP info after defining driver modules"Mark Johnston2021-01-231-1/+1
| | | | | | | | | | | | | | | This reverts commit aa37baf3d7cf51da92fd367476182802e71838ae. The reverted commit was motivated by a problem observed on stable/12, but it turns out that a better solution was committed in r348309 but not MFCed. So, revert this change since it is unnecessary and not really correct: it assumes that the order in which module metadata records is defined determines their order in the output linker set. While this seems to hold in my testing, it is not guaranteed. Reported by: cem Discussed with: imp MFC after: 3 days
* Define PNP info after defining driver modulesMark Johnston2021-01-211-1/+1
| | | | | | | | | | | | | | | | PNP info definitions currently have an unfortunate requirement in that they must follow the associated module definition in the module metadata linker set. Otherwise devmatch can segfault while processing the linker hints file since kldxref maintains the order in the linker set. A number of drivers violate this requirement. In some cases this can cause devmatch(8) to segfault when processing the linker hints file. Work around the problem for now simply by adjusting the drivers. Reviewed by: imp MFC after: 1 week Sponsored by: Rubicon Communications, LLC ("Netgate") Differential Revision: https://reviews.freebsd.org/D28260
* Add basic support for Freescale LX2160A SoC.Michal Meloun2020-12-051-0/+162
All peripherals but the network processor are supported. Notes: svn path=/head/; revision=368369