]> git.karo-electronics.de Git - karo-tx-uboot.git/commitdiff
Merge branch 'master' of git://www.denx.de/git/u-boot-dm
authorTom Rini <trini@konsulko.com>
Tue, 28 Apr 2015 23:37:20 +0000 (19:37 -0400)
committerTom Rini <trini@konsulko.com>
Tue, 28 Apr 2015 23:37:20 +0000 (19:37 -0400)
drivers/core/device.c
drivers/core/uclass.c
drivers/serial/ns16550.c

index 3b77d231d344d05d24047593f77bf9bbcfb49bc0..85fd1fc7350331d48721539cbb42ca5ae33f8206 100644 (file)
@@ -135,7 +135,7 @@ int device_bind(struct udevice *parent, const struct driver *drv,
        return 0;
 
 fail_child_post_bind:
-       if (IS_ENABLED(DM_DEVICE_REMOVE)) {
+       if (IS_ENABLED(CONFIG_DM_DEVICE_REMOVE)) {
                if (drv->unbind && drv->unbind(dev)) {
                        dm_warn("unbind() method failed on dev '%s' on error path\n",
                                dev->name);
@@ -143,14 +143,14 @@ fail_child_post_bind:
        }
 
 fail_bind:
-       if (IS_ENABLED(DM_DEVICE_REMOVE)) {
+       if (IS_ENABLED(CONFIG_DM_DEVICE_REMOVE)) {
                if (uclass_unbind_device(dev)) {
                        dm_warn("Failed to unbind dev '%s' on error path\n",
                                dev->name);
                }
        }
 fail_uclass_bind:
-       if (IS_ENABLED(DM_DEVICE_REMOVE)) {
+       if (IS_ENABLED(CONFIG_DM_DEVICE_REMOVE)) {
                list_del(&dev->sibling_node);
                if (dev->flags & DM_FLAG_ALLOC_PARENT_PDATA) {
                        free(dev->parent_platdata);
index 04e939d6c13bc216ec31ae311a9ceb659d027a25..7de817324b90fe22e99a2948f34a11926eaee2f7 100644 (file)
@@ -277,6 +277,7 @@ int uclass_get_device_tail(struct udevice *dev, int ret,
        if (ret)
                return ret;
 
+       assert(dev);
        ret = device_probe(dev);
        if (ret)
                return ret;
@@ -342,6 +343,8 @@ int uclass_first_device(enum uclass_id id, struct udevice **devp)
 
        *devp = NULL;
        ret = uclass_find_first_device(id, &dev);
+       if (!dev)
+               return 0;
        return uclass_get_device_tail(dev, ret, devp);
 }
 
@@ -352,6 +355,8 @@ int uclass_next_device(struct udevice **devp)
 
        *devp = NULL;
        ret = uclass_find_next_device(&dev);
+       if (!dev)
+               return 0;
        return uclass_get_device_tail(dev, ret, devp);
 }
 
index fd110b3ddcdf1514a738294ebf4f423bfc254437..3d376d758085b4389a15b888638449311c5f9391 100644 (file)
@@ -255,7 +255,6 @@ void debug_uart_init(void)
         */
        baud_divisor = calc_divisor(com_port, CONFIG_DEBUG_UART_CLOCK,
                                    CONFIG_BAUDRATE);
-       baud_divisor = 13;
        serial_out_shift(&com_port->ier, CONFIG_DEBUG_UART_SHIFT,
                         CONFIG_SYS_NS16550_IER);
        serial_out_shift(&com_port->mcr, CONFIG_DEBUG_UART_SHIFT, UART_MCRVAL);