Hello,
I had the same issue after upgrading to the same version, "biofx" has the right solution :
First I has to execute the following commands :
udevadm info --query=all --name=/dev/sda | grep -i -e "vendor_id" -e "model_id"
Which show :
E: ID_USB_MODEL_ID=1155
E: ID_USB_VENDOR_ID=174e
udevadm info --query=all --name=/dev/sdb | grep -i -e "vendor_id" -e "model_id"
Which show :
E: ID_USB_MODEL_ID=1156
E: ID_USB_VENDOR_ID=1741
I also have an Argon EON so the values are the same.
Then, into the file /var/lib/smartmontools/drivedb/drivedb.h I added (remember if you are not using an Argon EON : "0xVENDOR_ID:0xMODEL_ID") :
//My VIA Labs info
{ "USB: ; USB3 Hub", // USB3->SATA, USB-C->SATA
"0x174e:0x1155",
"", // 0x0100
"",
"-d sat"
},
{ "USB: ; USB3 Hub", // USB3->SATA, USB-C->SATA
"0x1741:0x1156",
"", // 0x0100
"",
"-d sat"
},
Reboot and it works!