mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 16:54:20 +08:00
i40e: allow various base numbers in debugfs aq commands
Use the 'i' rather than the more restrictive 'x' or 'd' in the aq_cmd arguments. This makes the user interface much more forgiving and user friendly. Change-ID: I5dcd57b9befc047e06b74cf1152a25a3fa9e1309 Signed-off-by: Shannon Nelson <shannon.nelson@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
038861b21b
commit
fbe8210100
@ -1493,7 +1493,7 @@ static ssize_t i40e_dbg_command_write(struct file *filp,
|
||||
if (!desc)
|
||||
goto command_write_done;
|
||||
cnt = sscanf(&cmd_buf[11],
|
||||
"%hx %hx %hx %hx %x %x %x %x %x %x",
|
||||
"%hi %hi %hi %hi %i %i %i %i %i %i",
|
||||
&desc->flags,
|
||||
&desc->opcode, &desc->datalen, &desc->retval,
|
||||
&desc->cookie_high, &desc->cookie_low,
|
||||
@ -1541,7 +1541,7 @@ static ssize_t i40e_dbg_command_write(struct file *filp,
|
||||
if (!desc)
|
||||
goto command_write_done;
|
||||
cnt = sscanf(&cmd_buf[20],
|
||||
"%hx %hx %hx %hx %x %x %x %x %x %x %hd",
|
||||
"%hi %hi %hi %hi %i %i %i %i %i %i %hi",
|
||||
&desc->flags,
|
||||
&desc->opcode, &desc->datalen, &desc->retval,
|
||||
&desc->cookie_high, &desc->cookie_low,
|
||||
|
Loading…
Reference in New Issue
Block a user