pch_phub.c (53279f36dccffc26ff536003fd6bb97cc21c3b82) pch_phub.c (2d6bed9ca93e98685bc5038d686984fd449cd978)
1/*
2 * Copyright (C) 2011 LAPIS Semiconductor Co., Ltd.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License.
7 *
8 * This program is distributed in the hope that it will be useful,

--- 874 unchanged lines hidden (view full) ---

883 { }
884};
885MODULE_DEVICE_TABLE(pci, pch_phub_pcidev_id);
886
887static struct pci_driver pch_phub_driver = {
888 .name = "pch_phub",
889 .id_table = pch_phub_pcidev_id,
890 .probe = pch_phub_probe,
1/*
2 * Copyright (C) 2011 LAPIS Semiconductor Co., Ltd.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License.
7 *
8 * This program is distributed in the hope that it will be useful,

--- 874 unchanged lines hidden (view full) ---

883 { }
884};
885MODULE_DEVICE_TABLE(pci, pch_phub_pcidev_id);
886
887static struct pci_driver pch_phub_driver = {
888 .name = "pch_phub",
889 .id_table = pch_phub_pcidev_id,
890 .probe = pch_phub_probe,
891 .remove = __devexit_p(pch_phub_remove),
891 .remove = pch_phub_remove,
892 .suspend = pch_phub_suspend,
893 .resume = pch_phub_resume
894};
895
896module_pci_driver(pch_phub_driver);
897
898MODULE_DESCRIPTION("Intel EG20T PCH/LAPIS Semiconductor IOH(ML7213/ML7223) PHUB");
899MODULE_LICENSE("GPL");
892 .suspend = pch_phub_suspend,
893 .resume = pch_phub_resume
894};
895
896module_pci_driver(pch_phub_driver);
897
898MODULE_DESCRIPTION("Intel EG20T PCH/LAPIS Semiconductor IOH(ML7213/ML7223) PHUB");
899MODULE_LICENSE("GPL");