Upgrade to clang 17.0.2 now that it has been released

This gets us a CUDA upgrade in clang-cuda

Change-Id: Ibb179c36043f4652001d38c1bc5840099fc05d07
Signed-off-by: Austin Schuh <austin.linux@gmail.com>
diff --git a/motors/usb/usb.h b/motors/usb/usb.h
index 1117bc8..2475220 100644
--- a/motors/usb/usb.h
+++ b/motors/usb/usb.h
@@ -95,8 +95,8 @@
 #define M_SETUP_REQUEST_TYPE_IN UINT8_C(1 << 7)
 #define G_SETUP_REQUEST_TYPE_TYPE(type) \
   static_cast<SetupRequestType>(((type) >> 5) & UINT8_C(3))
-#define G_SETUP_REQUEST_TYPE_RECIPIENT(type) ((type)&UINT8_C(0x1F))
-#define G_SETUP_REQUEST_INDEX_ENDPOINT(index) ((index)&UINT8_C(0x7F))
+#define G_SETUP_REQUEST_TYPE_RECIPIENT(type) ((type) & UINT8_C(0x1F))
+#define G_SETUP_REQUEST_INDEX_ENDPOINT(index) ((index) & UINT8_C(0x7F))
 
 // The names of the standard recipients for setup requests.
 namespace standard_setup_recipients {