summaryrefslogtreecommitdiffstats
path: root/common/blspec.c
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2013-10-31 16:18:47 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2013-11-05 08:37:54 +0100
commita58d8ba424f9b1b915698b3879abfd0afc1ca32b (patch)
treee9bcbb06873f2c998b4c60d3ab7b49009251f361 /common/blspec.c
parent2f5d04241c8184888ac10c9bf4bd3199a003bfab (diff)
downloadbarebox-a58d8ba424f9b1b915698b3879abfd0afc1ca32b.tar.gz
barebox-a58d8ba424f9b1b915698b3879abfd0afc1ca32b.tar.xz
blspec: rename _hwdevice functions to _devicename
Since it's not necessarily the hardware device this seems to be a more appropriate name. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common/blspec.c')
-rw-r--r--common/blspec.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/common/blspec.c b/common/blspec.c
index dd8ec4b478..8ae09a2676 100644
--- a/common/blspec.c
+++ b/common/blspec.c
@@ -361,12 +361,12 @@ int blspec_scan_device(struct blspec *blspec, struct device_d *dev)
}
/*
- * blspec_scan_hwdevice - scan a hardware device for child cdevs
+ * blspec_scan_devicename - scan a hardware device for child cdevs
*
* Given a name of a hardware device this functions scans over all child
* cdevs looking for blspec entries.
*/
-int blspec_scan_hwdevice(struct blspec *blspec, const char *devname)
+int blspec_scan_devicename(struct blspec *blspec, const char *devname)
{
struct device_d *dev;
@@ -488,10 +488,10 @@ struct blspec_entry *blspec_entry_default(struct blspec *l)
}
/*
- * blspec_boot_hwdevice - scan hardware device for blspec entries and
+ * blspec_boot_devicename - scan hardware device for blspec entries and
* start the best one.
*/
-int blspec_boot_hwdevice(const char *devname, int verbose, int dryrun)
+int blspec_boot_devicename(const char *devname, int verbose, int dryrun)
{
struct blspec *blspec;
struct blspec_entry *e;
@@ -499,7 +499,7 @@ int blspec_boot_hwdevice(const char *devname, int verbose, int dryrun)
blspec = blspec_alloc();
- ret = blspec_scan_hwdevice(blspec, devname);
+ ret = blspec_scan_devicename(blspec, devname);
if (ret)
return ret;