diff --git a/docs/CARS.md b/docs/CARS.md
index 96d966ba9..ff539f052 100644
--- a/docs/CARS.md
+++ b/docs/CARS.md
@@ -33,7 +33,7 @@ A supported vehicle is one that just works when you install a comma device. Ever
|Audi|RS3 2018|ACC + Lane Assist|[](##)|[](##)|[](##)|[](##)|
|Audi|S3 2015-17|ACC + Lane Assist|[](##)|[](##)|[](##)|[](##)|
|Cadillac|Escalade ESV 2016[1](#footnotes)|Adaptive Cruise Control (ACC) & LKAS|[](##)|[](##)|[](##)|[](##)|
-|Chevrolet|Bolt EUV 2022-23|All|[](##)|[](##)|[](##)|[](##)|
+|Chevrolet|Bolt EUV 2022-23|Premier/Premier Redline Trim|[](##)|[](##)|[](##)|[](##)|
|Chevrolet|Volt 2017-18[1](#footnotes)|Adaptive Cruise Control|[](##)|[](##)|[](##)|[](##)|
|Chrysler|Pacifica 2017-18|Adaptive Cruise Control|[](##)|[](##)|[](##)|[](##)|
|Chrysler|Pacifica 2019-20|Adaptive Cruise Control|[](##)|[](##)|[](##)|[](##)|
diff --git a/selfdrive/car/gm/values.py b/selfdrive/car/gm/values.py
index 6d3409310..75a5e96f9 100644
--- a/selfdrive/car/gm/values.py
+++ b/selfdrive/car/gm/values.py
@@ -83,7 +83,7 @@ CAR_INFO: Dict[str, Union[GMCarInfo, List[GMCarInfo]]] = {
CAR.ACADIA: GMCarInfo("GMC Acadia 2018", video_link="https://www.youtube.com/watch?v=0ZN6DdsBUZo"),
CAR.BUICK_REGAL: GMCarInfo("Buick Regal Essence 2018"),
CAR.ESCALADE_ESV: GMCarInfo("Cadillac Escalade ESV 2016", "Adaptive Cruise Control (ACC) & LKAS"),
- CAR.BOLT_EUV: GMCarInfo("Chevrolet Bolt EUV 2022-23", "All", footnotes=[], harness=Harness.gm),
+ CAR.BOLT_EUV: GMCarInfo("Chevrolet Bolt EUV 2022-23", "Premier/Premier Redline Trim", footnotes=[], harness=Harness.gm),
}