treewide: convert WiFi caldata size and offset to hexadecimal
[openwrt/staging/stintel.git] / target / linux / brcm63xx / base-files / etc / hotplug.d / firmware / 10-rt2x00-eeprom
index fe31ed323dfbb63ba7eb2a0282222db17f6ac09f..305d5feda5e07c4bcd46a364d67f1cd326cc5338 100644 (file)
@@ -8,8 +8,8 @@ rt2x00_eeprom_die() {
 
 rt2x00_eeprom_extract() {
        local part=$1
-       local offset=$2
-       local count=$3
+       local offset=$(($2))
+       local count=$(($3))
        local mtd
 
        mtd=$(find_mtd_part $part)
@@ -30,11 +30,11 @@ case "$FIRMWARE" in
 "rt2x00.eeprom" )
        case $board in
        hg556a_c)
-               rt2x00_eeprom_extract "cal_data" 130560 512
+               rt2x00_eeprom_extract "cal_data" 0x1fe00 0x200
                ;;
        hg622 |\
        hg655b)
-               rt2x00_eeprom_extract "cal_data" 0 512
+               rt2x00_eeprom_extract "cal_data" 0x0 0x200
                ;;
        *)
                rt2x00_eeprom_die "board $board is not supported yet"