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:
Nico Huber 2019-07-29 15:40:53 +02:00 committed by Patrick Georgi
parent fa781fa52c
commit 28883db36f
2 changed files with 6 additions and 4 deletions

View File

@ -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;

View File

@ -62,9 +62,11 @@ struct resource {
struct device;
struct bus;
extern void compact_resources(struct device *dev);
extern struct resource *probe_resource(struct device *dev, unsigned int index);
extern struct resource *probe_resource(const struct device *dev,
unsigned int index);
extern struct resource *new_resource(struct device *dev, unsigned int index);
extern struct resource *find_resource(struct device *dev, unsigned int index);
extern struct resource *find_resource(const struct device *dev,
unsigned int index);
extern resource_t resource_end(struct resource *resource);
extern resource_t resource_max(struct resource *resource);
extern void report_resource_stored(struct device *dev,