pwm: tegra: Remove useless padding

Use single spaces to separate data type from field names in structure
definitions.

Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
This commit is contained in:
Thierry Reding 2016-07-11 11:26:52 +02:00
parent c009c56475
commit e17c0b2258
1 changed files with 4 additions and 4 deletions

View File

@ -37,12 +37,12 @@
#define PWM_SCALE_SHIFT 0
struct tegra_pwm_chip {
struct pwm_chip chip;
struct device *dev;
struct pwm_chip chip;
struct device *dev;
struct clk *clk;
struct clk *clk;
void __iomem *mmio_base;
void __iomem *mmio_base;
};
static inline struct tegra_pwm_chip *to_tegra_pwm_chip(struct pwm_chip *chip)