Skip to content

Commit

Permalink
make rev lower case
Browse files Browse the repository at this point in the history
  • Loading branch information
MaynardMiner committed Feb 7, 2020
1 parent cd9c543 commit cf768c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/powershell/scripts/lspci.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ foreach ($Device in $Devices) {
$revision = $Device.HardwareID.substring($rev + 4, 2)
$new_rev = "{0:x2}" -f $revision

$Device.Irev = $new_rev
$Device.Irev = $new_rev.ToLower()
$Device.iTitle = ($title.split(" ")[1])
$Device.iVendor = $vendor
$Device.IDevice = $ideviceSubsys
Expand Down

0 comments on commit cf768c4

Please sign in to comment.