Merge branch 'module' of git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux-2.6-for-linus
* 'module' of git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux-2.6-for-linus: NULL-terminate all pci_device_id tables (trivial) Fix compiler warning in kernel/modules.c
This commit is contained in:
Коммит
f66dd539fe
|
@ -926,6 +926,7 @@ static void __devexit pch_dma_remove(struct pci_dev *pdev)
|
||||||
static const struct pci_device_id pch_dma_id_table[] = {
|
static const struct pci_device_id pch_dma_id_table[] = {
|
||||||
{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_PCH_DMA_8CH), 8 },
|
{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_PCH_DMA_8CH), 8 },
|
||||||
{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_PCH_DMA_4CH), 4 },
|
{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_PCH_DMA_4CH), 4 },
|
||||||
|
{ 0, },
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct pci_driver pch_dma_driver = {
|
static struct pci_driver pch_dma_driver = {
|
||||||
|
|
|
@ -560,7 +560,8 @@ static const struct pci_device_id scx200_pci[] __initconst = {
|
||||||
{ PCI_DEVICE(PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_CS5535_ISA),
|
{ PCI_DEVICE(PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_CS5535_ISA),
|
||||||
.driver_data = 1 },
|
.driver_data = 1 },
|
||||||
{ PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_CS5536_ISA),
|
{ PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_CS5536_ISA),
|
||||||
.driver_data = 2 }
|
.driver_data = 2 },
|
||||||
|
{ 0, }
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct {
|
static struct {
|
||||||
|
|
|
@ -2037,7 +2037,7 @@ static inline void layout_symtab(struct module *mod, struct load_info *info)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
static void add_kallsyms(struct module *mod, struct load_info *info)
|
static void add_kallsyms(struct module *mod, const struct load_info *info)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
#endif /* CONFIG_KALLSYMS */
|
#endif /* CONFIG_KALLSYMS */
|
||||||
|
|
Загрузка…
Ссылка в новой задаче