Skip to content

Commit

Permalink
pwm: tegra: Remove useless padding
Browse files Browse the repository at this point in the history
Use single spaces to separate data type from field names in structure
definitions.

Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
  • Loading branch information
thierryreding committed Jul 11, 2016
1 parent c009c56 commit e17c0b2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/pwm/pwm-tegra.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit e17c0b2

Please sign in to comment.