From: Peter Mamonov <pmamonov@gmail.com>
To: s.hauer@pengutronix.de, barebox@lists.infradead.org
Cc: Peter Mamonov <pmamonov@gmail.com>
Subject: [PATCH v1 resend] fixup! detect_fs: use device instead of file
Date: Tue, 13 Oct 2015 14:26:23 +0300 [thread overview]
Message-ID: <1444735583-21222-1-git-send-email-pmamonov@gmail.com> (raw)
In-Reply-To: <20151013074411.GB7858@pengutronix.de>
Signed-off-by: Peter Mamonov <pmamonov@gmail.com>
---
fs/fs.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/fs/fs.c b/fs/fs.c
index c041e41..c2a20e1 100644
--- a/fs/fs.c
+++ b/fs/fs.c
@@ -1201,10 +1201,14 @@ EXPORT_SYMBOL(register_fs_driver);
static const char *detect_fs(const char *filename)
{
- enum filetype type = cdev_detect_type(filename);
+ enum filetype type;
struct driver_d *drv;
struct fs_driver_d *fdrv;
+ if (!strncmp(filename, "/dev/", 5))
+ filename += 5;
+ type = cdev_detect_type(filename);
+
if (type == filetype_unknown)
return NULL;
--
2.1.4
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2015-10-13 11:24 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-12 13:15 [PATCH v1] " Peter Mamonov
2015-10-13 7:44 ` Sascha Hauer
2015-10-13 11:26 ` Peter Mamonov [this message]
2015-10-13 14:09 ` [PATCH v1 resend] " Sascha Hauer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1444735583-21222-1-git-send-email-pmamonov@gmail.com \
--to=pmamonov@gmail.com \
--cc=barebox@lists.infradead.org \
--cc=s.hauer@pengutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox