summaryrefslogtreecommitdiffstats
path: root/include
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 /include
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 'include')
-rw-r--r--include/blspec.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/blspec.h b/include/blspec.h
index aa836e6d64..a7b189acd0 100644
--- a/include/blspec.h
+++ b/include/blspec.h
@@ -31,12 +31,12 @@ int blspec_entry_save(struct blspec_entry *entry, const char *path);
int blspec_boot(struct blspec_entry *entry, int verbose, int dryrun);
-int blspec_boot_hwdevice(const char *devname, int verbose, int dryrun);
+int blspec_boot_devicename(const char *devname, int verbose, int dryrun);
void blspec_scan_devices(struct blspec *blspec);
struct blspec_entry *blspec_entry_default(struct blspec *l);
-int blspec_scan_hwdevice(struct blspec *blspec, const char *devname);
+int blspec_scan_devicename(struct blspec *blspec, const char *devname);
#define blspec_for_each_entry(blspec, entry) \
list_for_each_entry(entry, &blspec->entries, list)