File: zello.txt

package info (click to toggle)
sl-modem 2.9.11~20110321-11
  • links: PTS, VCS
  • area: non-free
  • in suites: jessie, jessie-kfreebsd
  • size: 3,448 kB
  • ctags: 2,972
  • sloc: ansic: 11,002; sh: 809; makefile: 232; python: 40; perl: 11
file content (33 lines) | stat: -rw-r--r-- 1,134 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
========
20080331
========

What's been changed:
--------------------

- in kernel 2.6.24 the macro SA_SHIRQ is undefined (it was deprecated - and
  redefined to IRQF_SHARED - since some previous kernel, I think 2.6.22).
  The code now use IRQF_SHARED if it's defined, and fall back to SA_SHIRQ if
  IRQF_SHARED is undef

- every use of pci_find_device function has been replaced with the pair
  pci_get_device/pci_dev_put. pci_get_device is the recommended way to look
  for a pci device since some earlier 2.6.x kernel, and pci_find_device has
  been left for backward compatibility, but may be removed in some next
  kernel version. The side effect is that you don't need to have
  CONFIG_PCI_LEGACY defined in your kernel .config (choice Bus
  Options->Enable deprecated pci_find_* API).

- some explicit casts have been added to prevent some signedness mismatch
  warnings when compiling

How to patch
------------

Put the diff file in the directory created untarring
slmodem-2.9.11-20070813. At the shell prompt, type:
cat FILENAME.DIFF | patch -p1
where FILENAME.DIFF is the name of the diff file.

--
zello <zello@libero.it>