001-disk-part_dos.c-Fix-a-variable-typo-in-write_mbr_par.patch 755 B

1234567891011121314151617181920212223242526
  1. From c7d1b1890880ee64786b92a1b95ba9ecb4694997 Mon Sep 17 00:00:00 2001
  2. From: Christian Melki <[email protected]>
  3. Date: Mon, 7 Jun 2021 11:21:15 +0200
  4. Subject: [PATCH] disk/part_dos.c: Fix a variable typo in
  5. write_mbr_partitions()
  6. This function is passed *dev not *dev_desc, so pass the right name to
  7. part_init().
  8. Fixes: f14c5ee5ab8b ("disk: part_dos: update partition table entries after write")
  9. Signed-off-by: Christian Melki <[email protected]>
  10. ---
  11. disk/part_dos.c | 2 +-
  12. 1 file changed, 1 insertion(+), 1 deletion(-)
  13. --- a/disk/part_dos.c
  14. +++ b/disk/part_dos.c
  15. @@ -424,7 +424,7 @@ int write_mbr_partitions(struct blk_desc
  16. }
  17. /* Update the partition table entries*/
  18. - part_init(dev_desc);
  19. + part_init(dev);
  20. return 0;
  21. }