|
@@ -60,7 +60,7 @@ proc_bus_pci_read(struct file *file, char __user *buf, size_t nbytes, loff_t *pp
|
|
|
*/
|
|
|
|
|
|
if (capable(CAP_SYS_ADMIN))
|
|
|
- size = dev->cfg_size;
|
|
|
+ size = dp->size;
|
|
|
else if (dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)
|
|
|
size = 128;
|
|
|
else
|
|
@@ -133,7 +133,7 @@ proc_bus_pci_write(struct file *file, const char __user *buf, size_t nbytes, lof
|
|
|
const struct proc_dir_entry *dp = PDE(ino);
|
|
|
struct pci_dev *dev = dp->data;
|
|
|
int pos = *ppos;
|
|
|
- int size = dev->cfg_size;
|
|
|
+ int size = dp->size;
|
|
|
int cnt;
|
|
|
|
|
|
if (pos >= size)
|