Commit d51ee07a authored by Bartosz Golaszewski's avatar Bartosz Golaszewski

gpio: mockup: don't create the debugfs link named after the label

User-space tests no longer use it and we're breaking the interface
anyway.
Signed-off-by: default avatarBartosz Golaszewski <bgolaszewski@baylibre.com>
parent cbf1e092
...@@ -234,7 +234,7 @@ static void gpio_mockup_debugfs_setup(struct device *dev, ...@@ -234,7 +234,7 @@ static void gpio_mockup_debugfs_setup(struct device *dev,
struct gpio_mockup_chip *chip) struct gpio_mockup_chip *chip)
{ {
struct gpio_mockup_dbgfs_private *priv; struct gpio_mockup_dbgfs_private *priv;
struct dentry *evfile, *link; struct dentry *evfile;
struct gpio_chip *gc; struct gpio_chip *gc;
const char *devname; const char *devname;
char *name; char *name;
...@@ -247,10 +247,6 @@ static void gpio_mockup_debugfs_setup(struct device *dev, ...@@ -247,10 +247,6 @@ static void gpio_mockup_debugfs_setup(struct device *dev,
if (IS_ERR_OR_NULL(chip->dbg_dir)) if (IS_ERR_OR_NULL(chip->dbg_dir))
goto err; goto err;
link = debugfs_create_symlink(gc->label, gpio_mockup_dbg_dir, devname);
if (IS_ERR_OR_NULL(link))
goto err;
for (i = 0; i < gc->ngpio; i++) { for (i = 0; i < gc->ngpio; i++) {
name = devm_kasprintf(dev, GFP_KERNEL, "%d", i); name = devm_kasprintf(dev, GFP_KERNEL, "%d", i);
if (!name) if (!name)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment