On Tue, Oct 30, 2018 at 07:23:51PM -0700, Richard Cochran wrote:
> This collection of automatic variables is getting ugly.  May I ask you
> to prefix a patch that puts them into reverse Christmas tree before
> your changes?  (Patch below)

Forgot the diff. Here it is...

---
diff --git a/drivers/ptp/ptp_chardev.c b/drivers/ptp/ptp_chardev.c
index 2012551d93e0..b54b8158ff8a 100644
--- a/drivers/ptp/ptp_chardev.c
+++ b/drivers/ptp/ptp_chardev.c
@@ -121,18 +121,18 @@ int ptp_open(struct posix_clock *pc, fmode_t fmode)
 
 long ptp_ioctl(struct posix_clock *pc, unsigned int cmd, unsigned long arg)
 {
-       struct ptp_clock_caps caps;
-       struct ptp_clock_request req;
-       struct ptp_sys_offset *sysoff = NULL;
-       struct ptp_sys_offset_precise precise_offset;
-       struct ptp_pin_desc pd;
        struct ptp_clock *ptp = container_of(pc, struct ptp_clock, clock);
+       struct ptp_sys_offset_precise precise_offset;
+       struct system_device_crosststamp xtstamp;
        struct ptp_clock_info *ops = ptp->info;
+       struct ptp_sys_offset *sysoff = NULL;
+       struct ptp_clock_request req;
+       struct ptp_clock_caps caps;
        struct ptp_clock_time *pct;
+       unsigned int i, pin_index;
+       struct ptp_pin_desc pd;
        struct timespec64 ts;
-       struct system_device_crosststamp xtstamp;
        int enable, err = 0;
-       unsigned int i, pin_index;
 
        switch (cmd) {
 

Reply via email to