From 630a27f240fd784c7c3f5d75e7c880eca3a66cf8 Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Sat, 3 Jan 2026 00:44:30 +0100 Subject: [PATCH] Replace tabs in fall-through comments Match the codebase's indentation style. --- src/ftdi.c | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/ftdi.c b/src/ftdi.c index de07d6e..4944e3a 100644 --- a/src/ftdi.c +++ b/src/ftdi.c @@ -3078,13 +3078,13 @@ int ftdi_eeprom_build(struct ftdi_context *ftdi) case TYPE_2232H: case TYPE_4232H: i += 2; - /* Fall through*/ + /* Fall through */ case TYPE_R: i += 2; - /* Fall through*/ + /* Fall through */ case TYPE_2232C: i += 2; - /* Fall through*/ + /* Fall through */ case TYPE_AM: case TYPE_BM: i += 0x94; @@ -3479,20 +3479,20 @@ int ftdi_eeprom_build(struct ftdi_context *ftdi) { case TYPE_230X: free_start += 2; - /* Fall through*/ + /* Fall through */ case TYPE_232H: free_start += 6; - /* Fall through*/ + /* Fall through */ case TYPE_2232H: case TYPE_4232H: free_start += 2; - /* Fall through*/ + /* Fall through */ case TYPE_R: free_start += 2; - /* Fall through*/ + /* Fall through */ case TYPE_2232C: free_start++; - /* Fall through*/ + /* Fall through */ case TYPE_AM: case TYPE_BM: free_start += 0x14; -- 1.7.1