smbios-mdr: Fix alignment in meson options

This resolves the below CI failure related to the alignment

```
 option(
-  'slot-drive-presence',
-  type: 'feature',
-  value: 'disabled',
-  description: 'Sets drive presence on slot objects'
+    'slot-drive-presence',
+    type: 'feature',
+    value: 'disabled',
+    description: 'Sets drive presence on slot objects',
 )
```

Change-Id: Ib9bc131b76c681485bd368dce76666c731473d1d
Signed-off-by: Prithvi Pai <ppai@nvidia.com>
diff --git a/meson.options b/meson.options
index b7f5265..23e4ed1 100644
--- a/meson.options
+++ b/meson.options
@@ -29,10 +29,10 @@
 )
 
 option(
-  'slot-drive-presence',
-  type: 'feature',
-  value: 'disabled',
-  description: 'Sets drive presence on slot objects'
+    'slot-drive-presence',
+    type: 'feature',
+    value: 'disabled',
+    description: 'Sets drive presence on slot objects',
 )
 
 option(