device: Constify dev
argument to (probe|find)_resource()
Change-Id: I7abca61db61d2f2df149ca601631c45d8c4f342e Signed-off-by: Nico Huber <nico.huber@secunet.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/34613 Reviewed-by: Aamir Bohra <aamir.bohra@intel.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Furquan Shaikh <furquan@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
committed by
Patrick Georgi
parent
fa781fa52c
commit
28883db36f
@@ -331,7 +331,7 @@ void compact_resources(struct device *dev)
|
||||
* @param index The index of the resource on the device.
|
||||
* @return The resource, if it already exists.
|
||||
*/
|
||||
struct resource *probe_resource(struct device *dev, unsigned index)
|
||||
struct resource *probe_resource(const struct device *dev, unsigned index)
|
||||
{
|
||||
struct resource *res;
|
||||
|
||||
@@ -401,7 +401,7 @@ struct resource *new_resource(struct device *dev, unsigned index)
|
||||
* @param index The index of the resource on the device.
|
||||
* return TODO.
|
||||
*/
|
||||
struct resource *find_resource(struct device *dev, unsigned index)
|
||||
struct resource *find_resource(const struct device *dev, unsigned index)
|
||||
{
|
||||
struct resource *resource;
|
||||
|
||||
|
Reference in New Issue
Block a user