From: Jan Engelhardt Date: Tue, 22 Jan 2008 19:53:43 +0000 (+0100) Subject: PCI: constify function pointer tables X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=02d90fc343411d6dff26bbd64f0895a243e6f608;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.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 2bf159b9c1cd..68aeeb7206de 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,