diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-06 15:25:06 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-06 15:25:06 -0400 |
| commit | 1685e633b396b0f3dabbc9fa5d65dfefe6435250 (patch) | |
| tree | ee83e26e2468ca1518a1b065c690159e12c8def9 | |
| parent | 1cfd2bda8c486ae0e7a8005354758ebb68172bca (diff) | |
| parent | 127c03cdbad9bd5af5d7f33bd31a1015a90cb77f (diff) | |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6:
pcmcia: avoid buffer overflow in pcmcia_setup_isa_irq
pcmcia: do not request windows if you don't need to
pcmcia: insert PCMCIA device resources into resource tree
pcmcia: export resource information to sysfs
pcmcia: use struct resource for PCMCIA devices, part 2
pcmcia: remove memreq_t
pcmcia: move local definitions out of include/pcmcia/cs.h
pcmcia: do not use io_req_t when calling pcmcia_request_io()
pcmcia: do not use io_req_t after call to pcmcia_request_io()
pcmcia: use struct resource for PCMCIA devices
pcmcia: clean up cs.h
pcmcia: use pcmica_{read,write}_config_byte
pcmcia: remove cs_types.h
pcmcia: remove unused flag, simplify headers
pcmcia: remove obsolete CS_EVENT_ definitions
pcmcia: split up central event handler
pcmcia: simplify event callback
pcmcia: remove obsolete ioctl
Conflicts in:
- drivers/staging/comedi/drivers/*
- drivers/staging/wlags49_h2/wl_cs.c
due to dev_info_t and whitespace changes
97 files changed, 1197 insertions, 3195 deletions
diff --git a/Documentation/feature-removal-schedule.txt b/Documentation/feature-removal-schedule.txt index be7030e4dd73..6fdb837d940b 100644 --- a/Documentation/feature-removal-schedule.txt +++ b/Documentation/feature-removal-schedule.txt | |||
| @@ -116,29 +116,6 @@ Who: Mauro Carvalho Chehab <mchehab@infradead.org> | |||
| 116 | 116 | ||
| 117 | --------------------------- | 117 | --------------------------- |
| 118 | 118 | ||
| 119 | What: PCMCIA control ioctl (needed for pcmcia-cs [cardmgr, cardctl]) | ||
| 120 | When: 2.6.35/2.6.36 | ||
| 121 | Files: drivers/pcmcia/: pcmcia_ioctl.c | ||
| 122 | Why: With the 16-bit PCMCIA subsystem now behaving (almost) like a | ||
| 123 | normal hotpluggable bus, and with it using the default kernel | ||
| 124 | infrastructure (hotplug, driver core, sysfs) keeping the PCMCIA | ||
| 125 | control ioctl needed by cardmgr and cardctl from pcmcia-cs is | ||
| 126 | unnecessary and potentially harmful (it does not provide for | ||
| 127 | proper locking), and makes further cleanups and integration of the | ||
| 128 | PCMCIA subsystem into the Linux kernel device driver model more | ||
| 129 | difficult. The features provided by cardmgr and cardctl are either | ||
| 130 | handled by the kernel itself now or are available in the new | ||
| 131 | pcmciautils package available at | ||
| 132 | http://kernel.org/pub/linux/utils/kernel/pcmcia/ | ||
| 133 | |||
| 134 | For all architectures except ARM, the associated config symbol | ||
| 135 | has been removed from kernel 2.6.34; for ARM, it will be likely | ||
| 136 | be removed from kernel 2.6.35. The actual code will then likely | ||
| 137 | be removed from kernel 2.6.36. | ||
| 138 | Who: Dominik Brodowski <linux@dominikbrodowski.net> | ||
| 139 | |||
| 140 | --------------------------- | ||
| 141 | |||
| 142 | What: sys_sysctl | 119 | What: sys_sysctl |
| 143 | When: September 2010 | 120 | When: September 2010 |
| 144 | Option: CONFIG_SYSCTL_SYSCALL | 121 | Option: CONFIG_SYSCTL_SYSCALL |
diff --git a/Documentation/pcmcia/driver-changes.txt b/Documentation/pcmcia/driver-changes.txt index 61bc4e943116..26c0f9c00545 100644 --- a/Documentation/pcmcia/driver-changes.txt +++ b/Documentation/pcmcia/driver-changes.txt | |||
| @@ -1,4 +1,16 @@ | |||
| 1 | This file details changes in 2.6 which affect PCMCIA card driver authors: | 1 | This file details changes in 2.6 which affect PCMCIA card driver authors: |
| 2 | * pcmcia_request_io changes (as of 2.6.36) | ||
| 3 | Instead of io_req_t, drivers are now requested to fill out | ||
| 4 | struct pcmcia_device *p_dev->resource[0,1] for up to two ioport | ||
| 5 | ranges. After a call to pcmcia_request_io(), the ports found there | ||
| 6 | are reserved, after calling pcmcia_request_configuration(), they may | ||
| 7 | be used. | ||
| 8 | |||
| 9 | * No dev_info_t, no cs_types.h (as of 2.6.36) | ||
| 10 | dev_info_t and a few other typedefs are removed. No longer use them | ||
| 11 | in PCM | ||
