{
struct hsi_controller *hsi = to_hsi_controller(dev);
- kfree(hsi->port);
kfree(hsi);
}
return;
for (i = 0; i < hsi->num_ports; i++)
- if (hsi->port && hsi->port[i])
+ if (hsi->port[i])
put_device(&hsi->port[i]->device);
put_device(&hsi->device);
}
struct hsi_controller *hsi_alloc_controller(unsigned int n_ports, gfp_t flags)
{
struct hsi_controller *hsi;
- struct hsi_port **port;
unsigned int i;
if (!n_ports)
return NULL;
- hsi = kzalloc_obj(*hsi, flags);
+ hsi = kzalloc_flex(*hsi, port, n_ports, flags);
if (!hsi)
return NULL;
- port = kzalloc_objs(*port, n_ports, flags);
- if (!port) {
- kfree(hsi);
- return NULL;
- }
+
hsi->num_ports = n_ports;
- hsi->port = port;
hsi->device.release = hsi_controller_release;
device_initialize(&hsi->device);
for (i = 0; i < n_ports; i++) {
- port[i] = kzalloc_obj(**port, flags);
- if (port[i] == NULL)
+ hsi->port[i] = kzalloc_obj(**hsi->port, flags);
+ if (hsi->port[i] == NULL)
goto out;
- port[i]->num = i;
- port[i]->async = hsi_dummy_msg;
- port[i]->setup = hsi_dummy_cl;
- port[i]->flush = hsi_dummy_cl;
- port[i]->start_tx = hsi_dummy_cl;
- port[i]->stop_tx = hsi_dummy_cl;
- port[i]->release = hsi_dummy_cl;
- mutex_init(&port[i]->lock);
- BLOCKING_INIT_NOTIFIER_HEAD(&port[i]->n_head);
- dev_set_name(&port[i]->device, "port%d", i);
+ hsi->port[i]->num = i;
+ hsi->port[i]->async = hsi_dummy_msg;
+ hsi->port[i]->setup = hsi_dummy_cl;
+ hsi->port[i]->flush = hsi_dummy_cl;
+ hsi->port[i]->start_tx = hsi_dummy_cl;
+ hsi->port[i]->stop_tx = hsi_dummy_cl;
+ hsi->port[i]->release = hsi_dummy_cl;
+ mutex_init(&hsi->port[i]->lock);
+ BLOCKING_INIT_NOTIFIER_HEAD(&hsi->port[i]->n_head);
+ dev_set_name(&hsi->port[i]->device, "port%d", i);
hsi->port[i]->device.release = hsi_port_release;
device_initialize(&hsi->port[i]->device);
}