From jengelh@computergmbh.de Tue Jan 22 14:09:28 2008 From: Jan Engelhardt Date: Tue, 22 Jan 2008 20:53:43 +0100 (CET) Subject: PCI: constify function pointer tables To: Greg Kroah-Hartman Cc: linux-pci@atrey.karlin.mff.cuni.cz Message-ID: Signed-off-by: Jan Engelhardt Signed-off-by: Greg Kroah-Hartman --- drivers/pci/proc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/pci/proc.c +++ b/drivers/pci/proc.c @@ -375,7 +375,7 @@ static int show_device(struct seq_file * return 0; } -static struct seq_operations proc_bus_pci_devices_op = { +static const struct seq_operations proc_bus_pci_devices_op = { .start = pci_seq_start, .next = pci_seq_next, .stop = pci_seq_stop,