// SPDX-License-Identifier: GPL-1.0+ /* * Renesas USB driver R-Car Gen. 2 initialization and power control * * Copyright (C) 2014 Ulrich Hecht */ #include <linux/gpio.h> #include <linux/of_gpio.h> #include <linux/phy/phy.h> #include "common.h" #include "rcar2.h"
static int usbhs_rcar2_hardware_init(struct platform_device *pdev) { struct usbhs_priv *priv = usbhs_pdev_to_priv(pdev); if (IS_ENABLED(CONFIG_GENERIC_PHY)) { struct phy *phy = phy_get(&pdev->dev, "usb"); if (IS_ERR(phy)) return PTR_ERR(phy); priv->phy = phy; return 0; } return -ENXIO; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Yoshihiro Shimoda | 51 | 71.83% | 2 | 66.67% |
Ulrich Hecht | 20 | 28.17% | 1 | 33.33% |
Total | 71 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Ulrich Hecht | 28 | 62.22% | 1 | 50.00% |
Yoshihiro Shimoda | 17 | 37.78% | 1 | 50.00% |
Total | 45 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Yoshihiro Shimoda | 62 | 64.58% | 2 | 66.67% |
Ulrich Hecht | 34 | 35.42% | 1 | 33.33% |
Total | 96 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Ulrich Hecht | 14 | 100.00% | 1 | 100.00% |
Total | 14 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Ulrich Hecht | 135 | 50.00% | 1 | 20.00% |
Yoshihiro Shimoda | 133 | 49.26% | 2 | 40.00% |
Greg Kroah-Hartman | 2 | 0.74% | 2 | 40.00% |
Total | 270 | 100.00% | 5 | 100.00% |