aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2007-06-14 09:29:48 +0000
committerMike Frysinger <vapier@gentoo.org>2007-06-14 09:29:48 +0000
commit0e0639b7020d5b6c58947393232c5445631767bd (patch)
tree8acbee2e95aa672e6b0469cabbcaae29d7b32318
parentd8540f71ac8d17ef461e2d52b3f63bd78b3c2c7e (diff)
downloadbusybox-0e0639b7020d5b6c58947393232c5445631767bd.tar.gz
Alex Landau writes: open firmware for reading, not writing
-rw-r--r--util-linux/mdev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/mdev.c b/util-linux/mdev.c
index fca4fd052..8743cdb6b 100644
--- a/util-linux/mdev.c
+++ b/util-linux/mdev.c
@@ -241,7 +241,7 @@ static inline void load_firmware(const char * const firmware, const char * const
/* check for /lib/firmware/$FIRMWARE */
xchdir("/lib/firmware");
- firmware_fd = xopen(firmware, O_WRONLY);
+ firmware_fd = xopen(firmware, O_RDONLY);
/* in case we goto out ... */
data_fd = -1;