Skip to content

Commit

Permalink
time64.h: Consolidated PSEC_PER_SEC definition
Browse files Browse the repository at this point in the history
We have currently three users of the PSEC_PER_SEC each of them defining it
individually. Instead, move it to time64.h to be available for everyone.

There is a new user coming with the same constant in use. It will also
make its life easier.

Signed-off-by: Andy Shevchenko <[email protected]>
Acked-by: Heiko Stuebner <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
andy-shev authored and davem330 committed Apr 6, 2021
1 parent 3036ec0 commit a460513
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
2 changes: 2 additions & 0 deletions drivers/net/ethernet/mscc/ocelot_ptp.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* Copyright (c) 2017 Microsemi Corporation
* Copyright 2020 NXP
*/
#include <linux/time64.h>

#include <soc/mscc/ocelot_ptp.h>
#include <soc/mscc/ocelot_sys.h>
#include <soc/mscc/ocelot.h>
Expand Down
2 changes: 0 additions & 2 deletions drivers/phy/phy-core-mipi-dphy.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
#include <linux/phy/phy.h>
#include <linux/phy/phy-mipi-dphy.h>

#define PSEC_PER_SEC 1000000000000LL

/*
* Minimum D-PHY timings based on MIPI D-PHY specification. Derived
* from the valid ranges specified in Section 6.9, Table 14, Page 41
Expand Down
8 changes: 4 additions & 4 deletions drivers/phy/rockchip/phy-rockchip-inno-dsidphy.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@
#include <linux/clk-provider.h>
#include <linux/delay.h>
#include <linux/init.h>
#include <linux/mfd/syscon.h>
#include <linux/module.h>
#include <linux/of_device.h>
#include <linux/platform_device.h>
#include <linux/pm_runtime.h>
#include <linux/reset.h>
#include <linux/time64.h>

#include <linux/phy/phy.h>
#include <linux/phy/phy-mipi-dphy.h>
#include <linux/pm_runtime.h>
#include <linux/mfd/syscon.h>

#define PSEC_PER_SEC 1000000000000LL

#define UPDATE(x, h, l) (((x) << (l)) & GENMASK((h), (l)))

Expand Down
2 changes: 0 additions & 2 deletions include/soc/mscc/ocelot_ptp.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ enum {

#define PTP_CFG_MISC_PTP_EN BIT(2)

#define PSEC_PER_SEC 1000000000000LL

#define PTP_CFG_CLK_ADJ_CFG_ENA BIT(0)
#define PTP_CFG_CLK_ADJ_CFG_DIR BIT(1)

Expand Down
1 change: 1 addition & 0 deletions include/vdso/time64.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#define NSEC_PER_MSEC 1000000L
#define USEC_PER_SEC 1000000L
#define NSEC_PER_SEC 1000000000L
#define PSEC_PER_SEC 1000000000000LL
#define FSEC_PER_SEC 1000000000000000LL

#endif /* __VDSO_TIME64_H */

0 comments on commit a460513

Please sign in to comment.