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:
parent
49c40d1297
commit
28f81558f4
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user