We are removing struct device from the gb_connection structure in the
near future.  The gb_bundle structure's struct device should be used as
a replacement.
This patch moves the i2c driver to use the bundle pointer instead of the
connection pointer.
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Reviewed-by: Alex Elder <elder@linaro.org>
        u32 i;
 
        if (msg_count > (u32)U16_MAX) {
-               dev_err(&connection->dev, "msg_count (%u) too big\n",
+               dev_err(&connection->bundle->dev, "msg_count (%u) too big\n",
                        msg_count);
                return NULL;
        }
        adapter->timeout = gb_i2c_dev->timeout_msec * HZ / 1000;
        adapter->retries = gb_i2c_dev->retries;
 
-       adapter->dev.parent = &connection->dev;
+       adapter->dev.parent = &connection->bundle->dev;
        snprintf(adapter->name, sizeof(adapter->name), "Greybus i2c adapter");
        i2c_set_adapdata(adapter, gb_i2c_dev);