diff options
author | Youngjae Cho <y0.cho@samsung.com> | 2023-07-25 19:57:59 +0900 |
---|---|---|
committer | Youngjae Cho <y0.cho@samsung.com> | 2023-07-25 20:00:21 +0900 |
commit | 2e2255b053329e6df3bc77640e4e62caeb09c91c (patch) | |
tree | 9845ad0292bfe3eb39c65ac62ea7cf8102efd68d /hw | |
parent | 665b53a4d4649c745e8ca8be8c25bf4e233984fc (diff) | |
download | device-rpi-2e2255b053329e6df3bc77640e4e62caeb09c91c.tar.gz device-rpi-2e2255b053329e6df3bc77640e4e62caeb09c91c.tar.bz2 device-rpi-2e2255b053329e6df3bc77640e4e62caeb09c91c.zip |
board: Replace prefix 'libsys' with 'syscommon'tizen_8.0_m2_releaseaccepted/tizen/unified/riscv/20231220.095310accepted/tizen/unified/20230726.163537accepted/tizen/8.0/unified/20231005.094501accepted/tizen_unified_riscv
Change-Id: I0499579065a19d287c10055e7170b755180049b7
Signed-off-by: Youngjae Cho <y0.cho@samsung.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/board/board.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/board/board.c b/hw/board/board.c index d7e6dbf..b8b57d9 100644 --- a/hw/board/board.c +++ b/hw/board/board.c @@ -81,7 +81,7 @@ static int get_boot_mode(char *buffer, const int max_len) snprintf(scan_format, sizeof(scan_format), "bootmode=%%%ds", max_len - 1); - ret = libsys_parse_cmdline_scanf(scan_format, buffer); + ret = syscommon_parse_cmdline_scanf(scan_format, buffer); if (ret <= 0) { return -ENOENT; @@ -97,7 +97,7 @@ static int get_boot_mode(char *buffer, const int max_len) static int get_current_partition(char *partition_ab) { - int ret_parse = libsys_parse_cmdline_scanf("partition_ab=%c", partition_ab); + int ret_parse = syscommon_parse_cmdline_scanf("partition_ab=%c", partition_ab); if (ret_parse <= 0) { return -ENOENT; |