|
@@ -310,12 +310,8 @@ static ssize_t iwl_dbgfs_nvm_read(struct file *file,
|
|
|
pos += scnprintf(buf + pos, buf_size - pos,
|
|
|
"NVM version: 0x%x\n", nvm_ver);
|
|
|
for (ofs = 0 ; ofs < eeprom_len ; ofs += 16) {
|
|
|
- pos += scnprintf(buf + pos, buf_size - pos, "0x%.4x ", ofs);
|
|
|
- hex_dump_to_buffer(ptr + ofs, 16 , 16, 2, buf + pos,
|
|
|
- buf_size - pos, 0);
|
|
|
- pos += strlen(buf + pos);
|
|
|
- if (buf_size - pos > 0)
|
|
|
- buf[pos++] = '\n';
|
|
|
+ pos += scnprintf(buf + pos, buf_size - pos, "0x%.4x %16ph\n",
|
|
|
+ ofs, ptr + ofs);
|
|
|
}
|
|
|
|
|
|
ret = simple_read_from_buffer(user_buf, count, ppos, buf, pos);
|