block: partitions: only define function mac_fix_string for CONFIG_PPC_PMAC for-6.9/block for-6.9/block-20240310
authorColin Ian King <colin.i.king@gmail.com>
Fri, 8 Mar 2024 13:39:21 +0000 (13:39 +0000)
committerJens Axboe <axboe@kernel.dk>
Sat, 9 Mar 2024 14:31:42 +0000 (07:31 -0700)
The helper function mac_fix_string is only required with CONFIG_PPC_PMAC,
add #if CONFIG_PPC_PMAC and #endif around the function.

Cleans up clang scan build warning:
block/partitions/mac.c:23:20: warning: unused function 'mac_fix_string' [-Wunused-function]

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Link: https://lore.kernel.org/r/20240308133921.2058227-1-colin.i.king@gmail.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/partitions/mac.c

index 7b521df00a39f4fc10239b71a1be86263d93beb1..c80183156d68020e0e14974308ac751b3df84421 100644 (file)
@@ -20,6 +20,7 @@ extern void note_bootable_part(dev_t dev, int part, int goodness);
  * Code to understand MacOS partition tables.
  */
 
+#ifdef CONFIG_PPC_PMAC
 static inline void mac_fix_string(char *stg, int len)
 {
        int i;
@@ -27,6 +28,7 @@ static inline void mac_fix_string(char *stg, int len)
        for (i = len - 1; i >= 0 && stg[i] == ' '; i--)
                stg[i] = 0;
 }
+#endif
 
 int mac_partition(struct parsed_partitions *state)
 {