diff options
| author | Marek Szyprowski <[email protected]> | 2020-12-23 13:55:10 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-01-15 14:38:00 -0500 |
| commit | 92f1c89d0a90ee39fce53ca6054223bf6b422cfb (patch) | |
| tree | 0f8a015aba23bf0f8de6bfa0fa2dced0c86ac308 /disk | |
| parent | 70c2525c0d3c5b459ba5a438b23056be648a5249 (diff) | |
disk: dos: rename write_mbr_partition to write_mbr_sector
write_mbr_partition() function name is a bit misleading, so rename it to
write_mbr_sector(). This is a preparation for adding code for writing a
complete MBR partition layout.
Signed-off-by: Marek Szyprowski <[email protected]>
Diffstat (limited to 'disk')
| -rw-r--r-- | disk/part_dos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/disk/part_dos.c b/disk/part_dos.c index 04f53106f7c..ef706fb59cb 100644 --- a/disk/part_dos.c +++ b/disk/part_dos.c @@ -329,7 +329,7 @@ int is_valid_dos_buf(void *buf) return test_block_type(buf) == DOS_MBR ? 0 : -1; } -int write_mbr_partition(struct blk_desc *dev_desc, void *buf) +int write_mbr_sector(struct blk_desc *dev_desc, void *buf) { if (is_valid_dos_buf(buf)) return -1; |
