···255255EXPORT_SYMBOL_GPL(gpio_device_get_base);256256257257/**258258+ * gpio_device_get_label() - Get the label of this GPIO device259259+ * @gdev: GPIO device260260+ *261261+ * Returns:262262+ * Pointer to the string containing the GPIO device label. The string's263263+ * lifetime is tied to that of the underlying GPIO device.264264+ */265265+const char *gpio_device_get_label(struct gpio_device *gdev)266266+{267267+ return gdev->label;268268+}269269+EXPORT_SYMBOL(gpio_device_get_label);270270+271271+/**258272 * gpio_device_get_chip() - Get the gpio_chip implementation of this GPIO device259273 * @gdev: GPIO device260274 *