From: Jan Engelhardt Date: Tue, 22 Jan 2008 19:53:43 +0000 (+0100) Subject: PCI: constify function pointer tables X-Git-Tag: v2.6.25-rc1~1074^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=02d90fc343411d6dff26bbd64f0895a243e6f608;p=platform%2Fkernel%2Flinux-3.10.git PCI: constify function pointer tables Signed-off-by: Jan Engelhardt Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/pci/proc.c b/drivers/pci/proc.c index 2bf159b..68aeeb7 100644 --- a/drivers/pci/proc.c +++ b/drivers/pci/proc.c @@ -375,7 +375,7 @@ static int show_device(struct seq_file *m, void *v) 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,