mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
ubi-utils-klibc: more patch-cleanings
* remove unnecessary patches after klibc upgrades * bump PR Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
This commit is contained in:
@@ -1,27 +1,5 @@
|
||||
--- a/ubi-utils/libubi.c 2012-05-01 01:57:51.000000000 +0200
|
||||
+++ b/ubi-utils/libubi.c 2012-05-01 01:55:14.000000000 +0200
|
||||
@@ -382,8 +402,8 @@
|
||||
return errmsg("\"%s\" is not a character device", node);
|
||||
}
|
||||
|
||||
- major = major(st.st_rdev);
|
||||
- minor = minor(st.st_rdev);
|
||||
+ major = __major(st.st_rdev);
|
||||
+ minor = __minor(st.st_rdev);
|
||||
|
||||
if (minor == 0) {
|
||||
errno = EINVAL;
|
||||
@@ -448,8 +468,8 @@
|
||||
return errmsg("\"%s\" is not a character device", node);
|
||||
}
|
||||
|
||||
- major = major(st.st_rdev);
|
||||
- minor = minor(st.st_rdev);
|
||||
+ major = __major(st.st_rdev);
|
||||
+ minor = __minor(st.st_rdev);
|
||||
|
||||
if (minor != 0) {
|
||||
errno = EINVAL;
|
||||
@@ -686,7 +706,7 @@
|
||||
* success and %-1 in case of failure. @r->ubi_num contains newly created UBI
|
||||
* device number.
|
||||
@@ -31,25 +9,3 @@
|
||||
{
|
||||
int fd, ret;
|
||||
|
||||
@@ -757,8 +777,8 @@
|
||||
mtd_dev_node);
|
||||
}
|
||||
|
||||
- major = major(sb.st_rdev);
|
||||
- minor = minor(sb.st_rdev);
|
||||
+ major = __major(sb.st_rdev);
|
||||
+ minor = __minor(sb.st_rdev);
|
||||
|
||||
if (major != MTD_CHAR_MAJOR) {
|
||||
errno = EINVAL;
|
||||
@@ -866,8 +886,8 @@
|
||||
return -1;
|
||||
}
|
||||
|
||||
- major = major(st.st_rdev);
|
||||
- minor = minor(st.st_rdev);
|
||||
+ major = __major(st.st_rdev);
|
||||
+ minor = __minor(st.st_rdev);
|
||||
|
||||
if (ubi_get_info((libubi_t *)lib, &info))
|
||||
return -1;
|
||||
|
||||
Reference in New Issue
Block a user