aboutsummaryrefslogtreecommitdiff
path: root/sys/arm/ti/omap4/omap4_gpio.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arm/ti/omap4/omap4_gpio.c')
-rw-r--r--sys/arm/ti/omap4/omap4_gpio.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/arm/ti/omap4/omap4_gpio.c b/sys/arm/ti/omap4/omap4_gpio.c
index dd38f4a6a56a..faf2339411b6 100644
--- a/sys/arm/ti/omap4/omap4_gpio.c
+++ b/sys/arm/ti/omap4/omap4_gpio.c
@@ -39,7 +39,6 @@ __FBSDID("$FreeBSD$");
#include <machine/bus.h>
#include <machine/intr.h>
-#include <dev/fdt/fdt_common.h>
#include <dev/ofw/ofw_bus.h>
#include <dev/ofw/ofw_bus_subr.h>
@@ -60,14 +59,14 @@ static struct ofw_compat_data compat_data[] = {
static int
omap4_gpio_probe(device_t dev)
{
- if (ti_chip() != CHIP_OMAP_4)
- return (ENXIO);
if (!ofw_bus_status_okay(dev))
return (ENXIO);
if (ofw_bus_search_compatible(dev, compat_data)->ocd_data == 0)
return (ENXIO);
+ if (ti_chip() != CHIP_OMAP_4)
+ return (ENXIO);
device_set_desc(dev, "TI OMAP4 General Purpose I/O (GPIO)");