sys: Remove $FreeBSD$: one-line .c patternRemove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
sys: Remove $FreeBSD$: two-line .h patternRemove /^\s*\*\n \*\s+\$FreeBSD\$$\n/
spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDThe SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catchup to that fact and revert to their recommended match of
spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDThe SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catchup to that fact and revert to their recommended match of BSD-2-Clause.Discussed with: pfgMFC After: 3 daysSponsored by: Netflix
show more ...
qcom_tlmm: use return code instead of always returning true.This was failing due to unused/ignored return values; so just use them.Reviewed by: impDifferential Revision: https://reviews.freebsd
qcom_tlmm: use return code instead of always returning true.This was failing due to unused/ignored return values; so just use them.Reviewed by: impDifferential Revision: https://reviews.freebsd.org/D36534
qcom_*: Remove unused devclass arguments to DRIVER_MODULE.
qcom_tlmm: add initial gpio/pinmux controller (TLMM)The qualcomm TLMM (top level mode manager) is their gpio/pinmux hardwarecontroller.Although the pinmux is generic enough to use for the IPQ/AP
qcom_tlmm: add initial gpio/pinmux controller (TLMM)The qualcomm TLMM (top level mode manager) is their gpio/pinmux hardwarecontroller.Although the pinmux is generic enough to use for the IPQ/APQ serieschips, I'm directly calling the IPQ4018 routines to expedite bring-up.Notably, I'm not yet implementing the interrupt support - it's notrequired at this stage of bring-up.Differential Revision: https://reviews.freebsd.org/D33554