Re: [PATCH 05/15] pciutils-pcilmr: Add margining process functions

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> +  if (msec < 0)
> +  {
> +    errno = EINVAL;
> +    return -1;
> +  }
[...]

Please follow the indentation style of the rest of pciutils.

> +union margin_payload {
> +  unsigned int payload : 8;
> +
> +  struct caps {
> +    bool volt_support : 1;
> +    bool ind_up_down_volt : 1;
> +    bool ind_left_right_tim : 1;
> +    bool sample_report_method : 1;
> +    bool ind_error_sampler : 1;
> +  } caps;
> +
> +  unsigned int timing_steps : 6;
> +  unsigned int voltage_steps : 7;
> +  unsigned int offset : 7;
> +  unsigned int max_lanes : 5;
> +  unsigned int sample_rate : 6;
> +
> +  struct step_resp {
> +    unsigned int err_count : 6;
> +    unsigned int status : 2;
> +  } step_resp;
> +
> +  struct step_tim {
> +    unsigned int steps : 6;
> +    bool go_left : 1;
> +  } step_tim;
> +
> +  struct step_volt {
> +    unsigned int steps : 7;
> +    bool go_down : 1;
> +  } step_volt;
> +
> +} __attribute__((packed));

Please do not assume that every compiler used to compile the pciutils supports
GCC extensions. See lib/sysdep.h for how we handle such things.

Also, I am not sure that bit fields are good idea: they save a little data
space, but they expand code.

				Have a nice fortnight
-- 
Martin `MJ' Mareš                        <mj@xxxxxx>   http://mj.ucw.cz/
United Computer Wizards, Prague, Czech Republic, Europe, Earth, Universe




[Index of Archives]     [DMA Engine]     [Linux Coverity]     [Linux USB]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [Greybus]

  Powered by Linux