Don't bother checking core version

We already constrain by SoC, so there's no need to check the core version, too.
This commit is contained in:
Justin Hibbits 2017-03-24 01:52:10 +00:00
parent 52f0686952
commit 457797001e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=315880

View File

@ -179,7 +179,6 @@ mpc85xx_gpio_pin_toggle(device_t dev, uint32_t pin)
static int
mpc85xx_gpio_probe(device_t dev)
{
uint16_t vers;
uint32_t svr;
if (!ofw_bus_status_okay(dev))
@ -188,16 +187,6 @@ mpc85xx_gpio_probe(device_t dev)
if (!ofw_bus_is_compatible(dev, "gpio"))
return (ENXIO);
vers = mfpvr() >> 16;
switch (vers) {
case FSL_E500v1:
case FSL_E500v2:
case FSL_E500mc:
break;
default:
return (ENXIO);
}
svr = mfspr(SPR_SVR);
switch (SVR_VER(svr)) {
case SVR_MPC8533: