Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion arch/arm/boot/dts/am335x-bone-common-universal.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -1077,7 +1077,7 @@
P8_18_pinmux {
compatible = "bone-pinmux-helper";
status = "okay";
pinctrl-names = "default", "gpio";
pinctrl-names = "default", "gpio", "gpio_pu", "gpio_pd";
pinctrl-0 = <&P8_18_default_pin>;
pinctrl-1 = <&P8_18_gpio_pin>;
pinctrl-2 = <&P8_18_gpio_pu_pin>;
Expand Down
1 change: 1 addition & 0 deletions drivers/misc/bone_capemgr.c
Original file line number Diff line number Diff line change
Expand Up @@ -1850,6 +1850,7 @@ static int capemgr_remove(struct platform_device *pdev)
capemgr_remove_slot_no_lock(slot);
mutex_unlock(&info->slots_list_mutex);

sysfs_remove_groups(&pdev->dev.kobj, pdev->dev.groups);
platform_set_drvdata(pdev, NULL);

ret = pm_runtime_get_sync(&pdev->dev);
Expand Down
2 changes: 2 additions & 0 deletions drivers/usb/core/driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -637,6 +637,7 @@ int usb_match_device(struct usb_device *dev, const struct usb_device_id *id)

return 1;
}
EXPORT_SYMBOL_GPL(usb_match_device);

/* returns 0 if no match, 1 if match */
int usb_match_one_id_intf(struct usb_device *dev,
Expand Down Expand Up @@ -1885,3 +1886,4 @@ struct bus_type usb_bus_type = {
.match = usb_device_match,
.uevent = usb_uevent,
};
EXPORT_SYMBOL_GPL(usb_bus_type);