.. | .. |
---|
125 | 125 | max = get_unaligned_le16(&desc->wMaxPacketSize); |
---|
126 | 126 | switch (max) { |
---|
127 | 127 | case 64: |
---|
128 | | - mode++; /* fall through */ |
---|
| 128 | + mode++; |
---|
| 129 | + fallthrough; |
---|
129 | 130 | case 32: |
---|
130 | | - mode++; /* fall through */ |
---|
| 131 | + mode++; |
---|
| 132 | + fallthrough; |
---|
131 | 133 | case 16: |
---|
132 | | - mode++; /* fall through */ |
---|
| 134 | + mode++; |
---|
| 135 | + fallthrough; |
---|
133 | 136 | case 8: |
---|
134 | 137 | mode <<= 3; |
---|
135 | 138 | break; |
---|
.. | .. |
---|
1783 | 1786 | } |
---|
1784 | 1787 | dev->got_region = 1; |
---|
1785 | 1788 | |
---|
1786 | | - base = ioremap_nocache(resource, len); |
---|
| 1789 | + base = ioremap(resource, len); |
---|
1787 | 1790 | if (base == NULL) { |
---|
1788 | 1791 | DBG(dev, "can't map memory\n"); |
---|
1789 | 1792 | retval = -EFAULT; |
---|
.. | .. |
---|
1844 | 1847 | MODULE_DEVICE_TABLE (pci, pci_ids); |
---|
1845 | 1848 | |
---|
1846 | 1849 | static struct pci_driver goku_pci_driver = { |
---|
1847 | | - .name = (char *) driver_name, |
---|
| 1850 | + .name = driver_name, |
---|
1848 | 1851 | .id_table = pci_ids, |
---|
1849 | 1852 | |
---|
1850 | 1853 | .probe = goku_probe, |
---|