comparison vidix/sysdep/pci_linux.c @ 26971:2b0f08e696ba

Remove unused variable, fixes the warning: vidix/sysdep/pci_linux.c:71: warning: unused variable 'config_cmd'
author diego
date Sat, 07 Jun 2008 09:41:51 +0000
parents 502f04b67653
children 0a7f07b761e1
comparison
equal deleted inserted replaced
26970:2eea71274bd1 26971:2b0f08e696ba
66 unsigned char bus, 66 unsigned char bus,
67 unsigned char dev, 67 unsigned char dev,
68 int func, 68 int func,
69 unsigned cmd) 69 unsigned cmd)
70 { 70 {
71 unsigned long config_cmd;
72 pcic_t p; 71 pcic_t p;
73 72
74 p.address = cmd; 73 p.address = cmd;
75 p.pcipos = (bus << 8) | dev | (func << 5); 74 p.pcipos = (bus << 8) | dev | (func << 5);
76 75