move ftdi_location deprecation helper to proper place
Change-Id: I927d4e918acbf321aea1dd7a8de95fbaa8fbbbf0 Signed-off-by: Oleksij Rempel <linux@rempel-privat.de> Reviewed-on: http://openocd.zylin.com/5278 Tested-by: jenkins Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
This commit is contained in:
parent
5280eb618a
commit
70babcc00b
|
@ -211,4 +211,9 @@ proc interface_list args {
|
||||||
eval adapter list $args
|
eval adapter list $args
|
||||||
}
|
}
|
||||||
|
|
||||||
|
proc ftdi_location args {
|
||||||
|
echo "DEPRECATED! use 'adapter usb location' not 'ftdi_location'"
|
||||||
|
eval adapter usb location $args
|
||||||
|
}
|
||||||
|
|
||||||
# END MIGRATION AIDS
|
# END MIGRATION AIDS
|
||||||
|
|
|
@ -221,9 +221,3 @@ proc cortex_a8 args {
|
||||||
echo "DEPRECATED! use 'cortex_a' not 'cortex_a8'"
|
echo "DEPRECATED! use 'cortex_a' not 'cortex_a8'"
|
||||||
eval cortex_a $args
|
eval cortex_a $args
|
||||||
}
|
}
|
||||||
|
|
||||||
# deprecated ftdi cmds
|
|
||||||
proc ftdi_location args {
|
|
||||||
echo "DEPRECATED! use 'adapter usb location' not 'ftdi_location'"
|
|
||||||
eval adapter usb location $args
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue