aboutsummaryrefslogtreecommitdiff
path: root/include/linux/reset-controller.h
AgeCommit message (Collapse)AuthorFilesLines
2014-01-16reset: Silence warning in reset-controller.hStephen Boyd1-0/+1
If a user of <linux/reset-controller.h> doesn't include <linux/of.h> before including reset-controller.h they'll get a warning as follows: include/linux/reset-controller.h:44:17: warning: 'struct of_phandle_args' declared inside parameter list This is because of_phandle_args is not forward declared. Add the declaration to silence this warning. Acked-by: Philipp Zabel <[email protected]> Signed-off-by: Stephen Boyd <[email protected]> Signed-off-by: Mike Turquette <[email protected]>
2013-04-12reset: Add reset controller APIPhilipp Zabel1-0/+51
This adds a simple API for devices to request being reset by separate reset controller hardware and implements the reset signal device tree binding. Signed-off-by: Philipp Zabel <[email protected]> Reviewed-by: Stephen Warren <[email protected]> Reviewed-by: Shawn Guo <[email protected]> Reviewed-by: Marek Vasut <[email protected]> Reviewed-by: Pavel Machek <[email protected]>