diff options
Diffstat (limited to 'drivers/base/power/trace.c')
| -rw-r--r-- | drivers/base/power/trace.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/base/power/trace.c b/drivers/base/power/trace.c index 2aa6e8fc4de..0a1a2c4dbc6 100644 --- a/drivers/base/power/trace.c +++ b/drivers/base/power/trace.c @@ -140,7 +140,7 @@ static unsigned int hash_string(unsigned int seed, const char *data, unsigned in  void set_trace_device(struct device *dev)  { -	dev_hash_value = hash_string(DEVSEED, dev->bus_id, DEVHASH); +	dev_hash_value = hash_string(DEVSEED, dev_name(dev), DEVHASH);  }  EXPORT_SYMBOL(set_trace_device); @@ -192,7 +192,7 @@ static int show_dev_hash(unsigned int value)  	while (entry != &dpm_list) {  		struct device * dev = to_device(entry); -		unsigned int hash = hash_string(DEVSEED, dev->bus_id, DEVHASH); +		unsigned int hash = hash_string(DEVSEED, dev_name(dev), DEVHASH);  		if (hash == value) {  			dev_info(dev, "hash matches\n");  			match++;  |