Skip to content

Commit 3aba70a

Browse files
committed
Merge tag 'gpio-fixes-for-v6.6-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux
Pull gpio fixes from Bartosz Golaszewski: - fix an invalid usage of __free(kfree) leading to kfreeing an ERR_PTR() - fix an irq domain leak in gpio-tb10x - MAINTAINERS update * tag 'gpio-fixes-for-v6.6-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux: gpio: sim: fix an invalid __free() usage gpio: tb10x: Fix an error handling path in tb10x_gpio_probe() MAINTAINERS: gpio-regmap: make myself a maintainer of it
2 parents 85eba5f + 5cb9606 commit 3aba70a

File tree

3 files changed

+29
-39
lines changed

3 files changed

+29
-39
lines changed

MAINTAINERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8873,7 +8873,7 @@ F: drivers/gpio/gpio-mockup.c
88738873
F: tools/testing/selftests/gpio/
88748874

88758875
GPIO REGMAP
8876-
R: Michael Walle <[email protected]>
8876+
M: Michael Walle <[email protected]>
88778877
S: Maintained
88788878
F: drivers/gpio/gpio-regmap.c
88798879
F: include/linux/gpio/regmap.h

drivers/gpio/gpio-sim.c

Lines changed: 23 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
#include <linux/irq.h>
2020
#include <linux/irq_sim.h>
2121
#include <linux/list.h>
22+
#include <linux/minmax.h>
2223
#include <linux/mod_devicetable.h>
2324
#include <linux/module.h>
2425
#include <linux/mutex.h>
@@ -685,52 +686,32 @@ gpio_sim_device_config_live_show(struct config_item *item, char *page)
685686
return sprintf(page, "%c\n", live ? '1' : '0');
686687
}
687688

688-
static char **gpio_sim_make_line_names(struct gpio_sim_bank *bank,
689-
unsigned int *line_names_size)
689+
static unsigned int gpio_sim_get_line_names_size(struct gpio_sim_bank *bank)
690690
{
691-
unsigned int max_offset = 0;
692-
bool has_line_names = false;
693691
struct gpio_sim_line *line;
694-
char **line_names;
692+
unsigned int size = 0;
695693

696694
list_for_each_entry(line, &bank->line_list, siblings) {
697-
if (line->offset >= bank->num_lines)
695+
if (!line->name || (line->offset >= bank->num_lines))
698696
continue;
699697

700-
if (line->name) {
701-
if (line->offset > max_offset)
702-
max_offset = line->offset;
703-
704-
/*
705-
* max_offset can stay at 0 so it's not an indicator
706-
* of whether line names were configured at all.
707-
*/
708-
has_line_names = true;
709-
}
698+
size = max(size, line->offset + 1);
710699
}
711700

712-
if (!has_line_names)
713-
/*
714-
* This is not an error - NULL means, there are no line
715-
* names configured.
716-
*/
717-
return NULL;
718-
719-
*line_names_size = max_offset + 1;
701+
return size;
702+
}
720703

721-
line_names = kcalloc(*line_names_size, sizeof(*line_names), GFP_KERNEL);
722-
if (!line_names)
723-
return ERR_PTR(-ENOMEM);
704+
static void
705+
gpio_sim_set_line_names(struct gpio_sim_bank *bank, char **line_names)
706+
{
707+
struct gpio_sim_line *line;
724708

725709
list_for_each_entry(line, &bank->line_list, siblings) {
726-
if (line->offset >= bank->num_lines)
710+
if (!line->name || (line->offset >= bank->num_lines))
727711
continue;
728712

729-
if (line->name && (line->offset <= max_offset))
730-
line_names[line->offset] = line->name;
713+
line_names[line->offset] = line->name;
731714
}
732-
733-
return line_names;
734715
}
735716

736717
static void gpio_sim_remove_hogs(struct gpio_sim_device *dev)
@@ -834,7 +815,7 @@ gpio_sim_make_bank_swnode(struct gpio_sim_bank *bank,
834815
struct fwnode_handle *parent)
835816
{
836817
struct property_entry properties[GPIO_SIM_PROP_MAX];
837-
unsigned int prop_idx = 0, line_names_size = 0;
818+
unsigned int prop_idx = 0, line_names_size;
838819
char **line_names __free(kfree) = NULL;
839820

840821
memset(properties, 0, sizeof(properties));
@@ -845,14 +826,19 @@ gpio_sim_make_bank_swnode(struct gpio_sim_bank *bank,
845826
properties[prop_idx++] = PROPERTY_ENTRY_STRING("gpio-sim,label",
846827
bank->label);
847828

848-
line_names = gpio_sim_make_line_names(bank, &line_names_size);
849-
if (IS_ERR(line_names))
850-
return ERR_CAST(line_names);
829+
line_names_size = gpio_sim_get_line_names_size(bank);
830+
if (line_names_size) {
831+
line_names = kcalloc(line_names_size, sizeof(*line_names),
832+
GFP_KERNEL);
833+
if (!line_names)
834+
return ERR_PTR(-ENOMEM);
835+
836+
gpio_sim_set_line_names(bank, line_names);
851837

852-
if (line_names)
853838
properties[prop_idx++] = PROPERTY_ENTRY_STRING_ARRAY_LEN(
854839
"gpio-line-names",
855840
line_names, line_names_size);
841+
}
856842

857843
return fwnode_create_software_node(properties, parent);
858844
}

drivers/gpio/gpio-tb10x.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ static int tb10x_gpio_probe(struct platform_device *pdev)
195195
handle_edge_irq, IRQ_NOREQUEST, IRQ_NOPROBE,
196196
IRQ_GC_INIT_MASK_CACHE);
197197
if (ret)
198-
return ret;
198+
goto err_remove_domain;
199199

200200
gc = tb10x_gpio->domain->gc->gc[0];
201201
gc->reg_base = tb10x_gpio->base;
@@ -209,6 +209,10 @@ static int tb10x_gpio_probe(struct platform_device *pdev)
209209
}
210210

211211
return 0;
212+
213+
err_remove_domain:
214+
irq_domain_remove(tb10x_gpio->domain);
215+
return ret;
212216
}
213217

214218
static int tb10x_gpio_remove(struct platform_device *pdev)

0 commit comments

Comments
 (0)