Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 328053
b: refs/heads/master
c: 1ef7615
h: refs/heads/master
i:
  328051: c101f48
v: v3
  • Loading branch information
Richard Cochran authored and David S. Miller committed Sep 22, 2012
1 parent 8121904 commit 0713128
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 12 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5c35bad5ffe5accde6b0ef4468b39e1db0806b94
refs/heads/master: 1ef761582c074448bae5be97abde5934667e7710
2 changes: 1 addition & 1 deletion trunk/drivers/net/ethernet/freescale/gianfar_ptp.c
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ static int gianfar_ptp_probe(struct platform_device *dev)

spin_unlock_irqrestore(&etsects->lock, flags);

etsects->clock = ptp_clock_register(&etsects->caps);
etsects->clock = ptp_clock_register(&etsects->caps, &dev->dev);
if (IS_ERR(etsects->clock)) {
err = PTR_ERR(etsects->clock);
goto no_clock;
Expand Down
3 changes: 2 additions & 1 deletion trunk/drivers/net/ethernet/intel/igb/igb_ptp.c
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,8 @@ void igb_ptp_init(struct igb_adapter *adapter)
wr32(E1000_IMS, E1000_IMS_TS);
}

adapter->ptp_clock = ptp_clock_register(&adapter->ptp_caps);
adapter->ptp_clock = ptp_clock_register(&adapter->ptp_caps,
&adapter->pdev->dev);
if (IS_ERR(adapter->ptp_clock)) {
adapter->ptp_clock = NULL;
dev_err(&adapter->pdev->dev, "ptp_clock_register failed\n");
Expand Down
3 changes: 2 additions & 1 deletion trunk/drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c
Original file line number Diff line number Diff line change
Expand Up @@ -960,7 +960,8 @@ void ixgbe_ptp_init(struct ixgbe_adapter *adapter)
/* (Re)start the overflow check */
adapter->flags2 |= IXGBE_FLAG2_OVERFLOW_CHECK_ENABLED;

adapter->ptp_clock = ptp_clock_register(&adapter->ptp_caps);
adapter->ptp_clock = ptp_clock_register(&adapter->ptp_caps,
&adapter->pdev->dev);
if (IS_ERR(adapter->ptp_clock)) {
adapter->ptp_clock = NULL;
e_dev_err("ptp_clock_register failed\n");
Expand Down
3 changes: 2 additions & 1 deletion trunk/drivers/net/ethernet/sfc/ptp.c
Original file line number Diff line number Diff line change
Expand Up @@ -931,7 +931,8 @@ static int efx_ptp_probe_channel(struct efx_channel *channel)
ptp->phc_clock_info.settime = efx_phc_settime;
ptp->phc_clock_info.enable = efx_phc_enable;

ptp->phc_clock = ptp_clock_register(&ptp->phc_clock_info);
ptp->phc_clock = ptp_clock_register(&ptp->phc_clock_info,
&efx->pci_dev->dev);
if (!ptp->phc_clock)
goto fail3;

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/phy/dp83640.c
Original file line number Diff line number Diff line change
Expand Up @@ -980,7 +980,7 @@ static int dp83640_probe(struct phy_device *phydev)

if (choose_this_phy(clock, phydev)) {
clock->chosen = dp83640;
clock->ptp_clock = ptp_clock_register(&clock->caps);
clock->ptp_clock = ptp_clock_register(&clock->caps, &phydev->dev);
if (IS_ERR(clock->ptp_clock)) {
err = PTR_ERR(clock->ptp_clock);
goto no_register;
Expand Down
5 changes: 3 additions & 2 deletions trunk/drivers/ptp/ptp_clock.c
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,8 @@ static void delete_ptp_clock(struct posix_clock *pc)

/* public interface */

struct ptp_clock *ptp_clock_register(struct ptp_clock_info *info)
struct ptp_clock *ptp_clock_register(struct ptp_clock_info *info,
struct device *parent)
{
struct ptp_clock *ptp;
int err = 0, index, major = MAJOR(ptp_devt);
Expand Down Expand Up @@ -215,7 +216,7 @@ struct ptp_clock *ptp_clock_register(struct ptp_clock_info *info)
init_waitqueue_head(&ptp->tsev_wq);

/* Create a new device in our class. */
ptp->dev = device_create(ptp_class, NULL, ptp->devid, ptp,
ptp->dev = device_create(ptp_class, parent, ptp->devid, ptp,
"ptp%d", ptp->index);
if (IS_ERR(ptp->dev))
goto no_device;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/ptp/ptp_ixp46x.c
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ static int __init ptp_ixp_init(void)

ixp_clock.caps = ptp_ixp_caps;

ixp_clock.ptp_clock = ptp_clock_register(&ixp_clock.caps);
ixp_clock.ptp_clock = ptp_clock_register(&ixp_clock.caps, NULL);

if (IS_ERR(ixp_clock.ptp_clock))
return PTR_ERR(ixp_clock.ptp_clock);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/ptp/ptp_pch.c
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ pch_probe(struct pci_dev *pdev, const struct pci_device_id *id)
}

chip->caps = ptp_pch_caps;
chip->ptp_clock = ptp_clock_register(&chip->caps);
chip->ptp_clock = ptp_clock_register(&chip->caps, &pdev->dev);

if (IS_ERR(chip->ptp_clock))
return PTR_ERR(chip->ptp_clock);
Expand Down
7 changes: 5 additions & 2 deletions trunk/include/linux/ptp_clock_kernel.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#ifndef _PTP_CLOCK_KERNEL_H_
#define _PTP_CLOCK_KERNEL_H_

#include <linux/device.h>
#include <linux/pps_kernel.h>
#include <linux/ptp_clock.h>

Expand Down Expand Up @@ -93,10 +94,12 @@ struct ptp_clock;
/**
* ptp_clock_register() - register a PTP hardware clock driver
*
* @info: Structure describing the new clock.
* @info: Structure describing the new clock.
* @parent: Pointer to the parent device of the new clock.
*/

extern struct ptp_clock *ptp_clock_register(struct ptp_clock_info *info);
extern struct ptp_clock *ptp_clock_register(struct ptp_clock_info *info,
struct device *parent);

/**
* ptp_clock_unregister() - unregister a PTP hardware clock driver
Expand Down

0 comments on commit 0713128

Please sign in to comment.