sys: Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
sys: Remove $FreeBSD$: two-line .h patternRemove /^\s*\*\n \*\s+\$FreeBSD\$$\n/
Add support for an array of hwresetsIn some drivers we need to assert and deassert a group of hardwareresets in any order. To support this add a new hwreset_array thatmanages all hwresets defined
Add support for an array of hwresetsIn some drivers we need to assert and deassert a group of hardwareresets in any order. To support this add a new hwreset_array thatmanages all hwresets defined for a device.Reviewed by: bz, manu, mmelSponsored by: The FreeBSD FoundationDifferential Revision: https://reviews.freebsd.org/D37357
show more ...
Include opt_platform.h to ensure FDT is definedWe need to include opt_platform.h as it's where FDT will be defined.Sponsored by: The FreeBSD Foundation
Remove redundant declarations. Newer gcc has a warning for these so willfail when building with -Werror.Sponsored by: DARPA, AFRL
EXTRES: Add OF node as argument to all <foo>_get_by_ofw_<bar>() functions.In some cases, the driver must handle given properties located inspecific OF subnode. Instead of creating duplicate set of
EXTRES: Add OF node as argument to all <foo>_get_by_ofw_<bar>() functions.In some cases, the driver must handle given properties located inspecific OF subnode. Instead of creating duplicate set of function, add'node' as argument to existing functions, defaulting it to device OF node.MFC after: 3 weeks
Use OF_prop_free instead of direct call to free(9)Reviewed by: mmel@
Add reset framework, a second part of new 'extended resources' family ofsupport frameworks (i.e. regulators/phy/tsensors/fuses...).It provides simple unified consumers interface for manipulations
Add reset framework, a second part of new 'extended resources' family ofsupport frameworks (i.e. regulators/phy/tsensors/fuses...).It provides simple unified consumers interface for manipulations withon-chip resets.Reviewed by: ian, imp (paritaly)