From: David Woodhouse <dwmw2@infradead.org>
To: torvalds@linux-foundation.org
Cc: akpm@linux-foundation.org, alan@lxorguk.ukuu.org.uk,
linux-kernel@vger.kernel.org
Subject: [GIT *] Allow request_firmware() to be satisfied from in-kernel, use it in more drivers.
Date: Mon, 14 Jul 2008 16:23:26 -0700 [thread overview]
Message-ID: <1216077806.27455.85.camel@shinybook.infradead.org> (raw)
Linus, please pull from the for-2.6.27 branch of:
git://git.infradead.org/users/dwmw2/firmware-2.6.git for-2.6.27
This does the following (not quite in this order):
- Provides a method for firmware files to be built into the kernel, so
that drivers can be updated to use request_firmware() without forcing
people to use an initrd.
- In doing that, mark fw->data as 'const', and fix a few drivers to cope.
- Update a bunch of drivers to use request_firmware(), and move their
existing firmware, previously hardcoded in all kinds of interesting
ways, into the firmware/ directory of the kernel tree.
- Add a FIRMWARE_IN_KERNEL config option which allows the firmware for
the above (and below) drivers to continue to be built into the kernel.
- Add a simple method for representing Intel HEX records in binary form,
since a bunch of drivers need that kind of thing. And a tool to
convert HEX files into that binary form, for the kernel to load.
- Drop special cases from a few drivers which could either use
request_firmware() or build their firmware in; they don't need to
do that for themselves any more.
- Implement 'make firmware_install' target, which installs all firmware
shipped with the kernel.
- Modify 'make modules_install' to install any firmware required by the
modules it installs (where that firmware is shipped in the kernel tree).
There are more drivers to be converted to request_firmware() -- notably
drivers/net and drivers/scsi, but it's probably best to ensure that the
infrastructure is all in place and working correctly before we update
those. (Although since modern drivers have been using request_firmware()
for some time, I don't think there's likely to be a problem there; we'll
probably clean up the stragglers in time for 2.6.28.)
David Howells (5):
Fix a const pointer usage warning in the Digigram VX soundcard driver
Fix a const assignment in moxa_load_fw()
Fix a const pointer error in the Conexant cx23418 MPEG encoder driver
Fix a const pointer usage warning in the Digigram pcxhr soundcard driver
Fix a const pointer usage warning in the Digigram miXart soundcard driver
Full shortlog and diffstat below, although the really interesting part
is probably between commits fd4f80de..59890f74 -- seen at
http://git.infradead.org/users/dwmw2/firmware-2.6.git?a=shortlog;h=59890f74
David Woodhouse (52):
libertas: treat firmware data as const
bluetooth: treat firmware data as const
cyclades: treat firmware data as const
cx25840: treat firmware data as const
myri10ge: treat firmware data as const
vx222: treat firmware data as const
riptide: treat firmware data as const
pcxhr: treat firmware data as const
vx: treat firmware data as const
ueagle-atm: treat firmware data as const
cxacru: treat firmware data as const
aic94xx: treat firmware data as const
zd1201: treat firmware data as const
rt2x00: treat firmware data as const
p54: treat firmware data as const
atmel: treat firmware data as const
irda-usb: treat firmware data as const
cxgb3: treat firmware data as const
bt8xx: treat firmware data as const
ttusb-dec: treat firmware data as const
dvb frontends: treat firmware data as const
cxusb: treat firmware data as const
gp8psk: treat firmware data as const
tuners: treat firmware data as const
maestro3: treat firmware data as const
ymfpci: treat firmware data as const
firmware: make fw->data const
firmware: allow firmware files to be built into kernel image
firmware: Add CONFIG_EXTRA_FIRMWARE option
firmware: Add CONFIG_FIRMWARE_IN_KERNEL option.
firmware: Add firmware installation to modules_install, add firmware_install
ihex.h: binary representation of ihex records
ihex: request_ihex_firmware() function to load and validate firmware
ihex: add ihex2fw tool for converting HEX files into firmware images
ihex: Add support for long records to ihex2fw.c
firmware: convert korg1212 driver to use firmware loader exclusively
firmware: convert maestro3 driver to use firmware loader exclusively
firmware: convert ymfpci driver to use firmware loader exclusively
smctr: use request_firmware()
kaweth: use request_firmware()
ttusb-budget: use request_firmware()
keyspan: use request_firmware()
keyspan_pda: use request_firmware()
emi26: use request_firmware()
emi62: use request_firmware()
ti_usb_3410_5052: use request_firmware()
whiteheat: use request_firmware()
firmware: convert Ambassador ATM driver to request_firmware()
ip2: use request_firmware()
cpia2: use request_firmware()
dabusb: use request_firmware()
Merge git://git.kernel.org/.../torvalds/linux-2.6.git
Greg Kroah-Hartman (3):
dell_rbu: firmware data is const
x86 microcode: firmware data is const
isight: treat firmware data as const
Jaswinder Singh (5):
vicam: use request_firmware()
edgeport: use request_firmware()
edgeport-ti: use request_firmware()
dsp56k: use request_firmware
firmware: convert sb16_csp driver to use firmware loader exclusively
Makefile | 15 +-
arch/x86/kernel/microcode.c | 4 +-
drivers/atm/Makefile | 6 +-
drivers/atm/ambassador.c | 140 +-
drivers/atm/ambassador.h | 11 -
drivers/atm/atmsar11.data | 2063 -----
drivers/atm/atmsar11.regions | 6 -
drivers/atm/atmsar11.start | 4 -
drivers/base/Kconfig | 64 +
drivers/base/firmware_class.c | 35 +-
drivers/bluetooth/bfusb.c | 3 +-
drivers/bluetooth/bt3c_cs.c | 3 +-
drivers/char/cyclades.c | 10 +-
drivers/char/dsp56k.c | 84 +-
drivers/char/ip2/fip_firm.h | 2149 -----
drivers/char/ip2/ip2base.c | 5 +-
drivers/char/ip2/ip2main.c | 47 +-
drivers/char/moxa.c | 4 +-
drivers/firmware/dell_rbu.c | 2 +-
drivers/media/common/tuners/tuner-xc2028.c | 2 +-
drivers/media/common/tuners/xc5000.c | 2 +-
drivers/media/dvb/dvb-usb/cxusb.c | 21 +-
drivers/media/dvb/dvb-usb/gp8psk.c | 3 +-
drivers/media/dvb/frontends/bcm3510.c | 5 +-
drivers/media/dvb/frontends/nxt200x.c | 3 +-
drivers/media/dvb/frontends/or51211.c | 4 +-
drivers/media/dvb/frontends/sp8870.c | 2 +-
drivers/media/dvb/frontends/sp887x.c | 2 +-
drivers/media/dvb/frontends/tda10048.c | 2 +-
drivers/media/dvb/frontends/tda1004x.c | 2 +-
drivers/media/dvb/ttusb-budget/dvb-ttusb-budget.c | 16 +-
.../media/dvb/ttusb-budget/dvb-ttusb-dspbootcode.h | 1644 ----
drivers/media/dvb/ttusb-dec/ttusb_dec.c | 2 +-
drivers/media/video/bt8xx/bttv-cards.c | 3 +-
drivers/media/video/cpia2/cpia2_core.c | 46 +-
drivers/media/video/cpia2/cpia2patch.h | 233 -
drivers/media/video/cx18/cx18-av-firmware.c | 2 +-
drivers/media/video/cx25840/cx25840-firmware.c | 27 +-
drivers/media/video/dabfirmware.h | 1415 ----
drivers/media/video/dabusb.c | 44 +-
drivers/media/video/usbvideo/vicam.c | 317 +-
drivers/net/cxgb3/common.h | 5 +-
drivers/net/cxgb3/t3_hw.c | 7 +-
drivers/net/irda/irda-usb.c | 12 +-
drivers/net/myri10ge/myri10ge.c | 11 +-
drivers/net/tokenring/smctr.c | 56 +-
drivers/net/tokenring/smctr.h | 2 -
drivers/net/tokenring/smctr_firmware.h | 978 ---
drivers/net/usb/kaweth.c | 43 +-
drivers/net/usb/kawethfw.h | 557 --
drivers/net/wireless/atmel.c | 6 +-
drivers/net/wireless/libertas/if_cs.c | 2 +-
drivers/net/wireless/libertas/if_sdio.c | 4 +-
drivers/net/wireless/libertas/if_usb.c | 4 +-
drivers/net/wireless/p54/p54usb.c | 5 +-
drivers/net/wireless/rt2x00/rt2x00.h | 4 +-
drivers/net/wireless/rt2x00/rt2x00pci.h | 2 +-
drivers/net/wireless/rt2x00/rt61pci.c | 4 +-
drivers/net/wireless/rt2x00/rt73usb.c | 6 +-
drivers/net/wireless/zd1201.c | 2 +-
drivers/scsi/aic94xx/aic94xx_sds.c | 12 +-
drivers/scsi/aic94xx/aic94xx_sds.h | 4 +-
drivers/scsi/aic94xx/aic94xx_seq.c | 7 +-
drivers/usb/atm/cxacru.c | 2 +-
drivers/usb/atm/ueagle-atm.c | 20 +-
drivers/usb/misc/emi26.c | 96 +-
drivers/usb/misc/emi26_fw.h | 5779 -------------
drivers/usb/misc/emi62.c | 130 +-
drivers/usb/misc/emi62_fw_m.h | 8853 --------------------
drivers/usb/misc/emi62_fw_s.h | 8837 -------------------
drivers/usb/misc/isight_firmware.c | 2 +-
drivers/usb/serial/Kconfig | 24 +-
drivers/usb/serial/io_edgeport.c | 183 +-
drivers/usb/serial/io_fw_boot.h | 556 --
drivers/usb/serial/io_fw_boot2.h | 546 --
drivers/usb/serial/io_fw_down.h | 1229 ---
drivers/usb/serial/io_fw_down2.h | 1133 ---
drivers/usb/serial/io_fw_down3.h | 847 --
drivers/usb/serial/io_ti.c | 73 +-
drivers/usb/serial/keyspan.c | 78 +-
drivers/usb/serial/keyspan.h | 84 -
drivers/usb/serial/keyspan_mpr_fw.h | 286 -
drivers/usb/serial/keyspan_pda.S | 1124 ---
drivers/usb/serial/keyspan_pda.c | 51 +-
drivers/usb/serial/keyspan_pda_fw.h | 99 -
drivers/usb/serial/keyspan_usa18x_fw.h | 447 -
drivers/usb/serial/keyspan_usa19_fw.h | 285 -
drivers/usb/serial/keyspan_usa19qi_fw.h | 284 -
drivers/usb/serial/keyspan_usa19qw_fw.h | 448 -
drivers/usb/serial/keyspan_usa19w_fw.h | 446 -
drivers/usb/serial/keyspan_usa28_fw.h | 466 -
drivers/usb/serial/keyspan_usa28x_fw.h | 447 -
drivers/usb/serial/keyspan_usa28xa_fw.h | 449 -
drivers/usb/serial/keyspan_usa28xb_fw.h | 448 -
drivers/usb/serial/keyspan_usa49w_fw.h | 464 -
drivers/usb/serial/keyspan_usa49wlc_fw.h | 476 --
drivers/usb/serial/ti_fw_3410.h | 885 --
drivers/usb/serial/ti_fw_5052.h | 885 --
drivers/usb/serial/ti_usb_3410_5052.c | 40 +-
drivers/usb/serial/whiteheat.c | 77 +-
drivers/usb/serial/whiteheat_fw.h | 1669 ----
drivers/usb/serial/xircom_pgs.S | 1192 ---
drivers/usb/serial/xircom_pgs_fw.h | 103 -
firmware/Makefile | 177 +
firmware/WHENCE | 341 +
firmware/atmsar11.HEX | 204 +
firmware/cpia2/stv0672_vp4.bin.ihex | 73 +
firmware/dabusb/bitstream.bin.ihex | 761 ++
firmware/dabusb/firmware.HEX | 649 ++
firmware/dsp56k/bootstrap.asm | 98 +
firmware/dsp56k/bootstrap.bin.ihex | 26 +
firmware/edgeport/boot.H16 | 29 +
firmware/edgeport/boot2.H16 | 28 +
firmware/edgeport/down.H16 | 29 +
firmware/edgeport/down2.H16 | 29 +
firmware/edgeport/down3.bin.ihex | 815 ++
firmware/emi26/bitstream.HEX | 4391 ++++++++++
firmware/emi26/firmware.HEX | 1261 +++
firmware/emi26/loader.HEX | 116 +
firmware/emi62/bitstream.HEX | 4372 ++++++++++
firmware/emi62/loader.HEX | 107 +
firmware/emi62/midi.HEX | 1266 +++
firmware/emi62/spdif.HEX | 1257 +++
firmware/ess/maestro3_assp_kernel.fw.ihex | 120 +
firmware/ess/maestro3_assp_minisrc.fw.ihex | 51 +
firmware/ihex2fw.c | 268 +
firmware/intelliport2.bin.ihex | 2147 +++++
firmware/kaweth/new_code.bin.ihex | 206 +
firmware/kaweth/new_code_fix.bin.ihex | 40 +
firmware/kaweth/trigger_code.bin.ihex | 13 +
firmware/kaweth/trigger_code_fix.bin.ihex | 3 +
firmware/keyspan/mpr.HEX | 104 +
firmware/keyspan/usa18x.HEX | 141 +
firmware/keyspan/usa19.HEX | 101 +
firmware/keyspan/usa19qi.HEX | 101 +
firmware/keyspan/usa19qw.HEX | 142 +
firmware/keyspan/usa19w.HEX | 141 +
firmware/keyspan/usa28.HEX | 148 +
firmware/keyspan/usa28x.HEX | 141 +
firmware/keyspan/usa28xa.HEX | 141 +
firmware/keyspan/usa28xb.HEX | 142 +
firmware/keyspan/usa49w.HEX | 145 +
firmware/keyspan/usa49wlc.HEX | 153 +
firmware/keyspan_pda/keyspan_pda.HEX | 83 +
firmware/keyspan_pda/keyspan_pda.S | 1124 +++
firmware/keyspan_pda/xircom_pgs.HEX | 87 +
firmware/keyspan_pda/xircom_pgs.S | 1192 +++
firmware/korg/k1212.dsp.ihex | 987 +++
firmware/sb16/alaw_main.csp.ihex | 87 +
firmware/sb16/ima_adpcm_capture.csp.ihex | 121 +
firmware/sb16/ima_adpcm_init.csp.ihex | 70 +
firmware/sb16/ima_adpcm_playback.csp.ihex | 122 +
firmware/sb16/mulaw_main.csp.ihex | 84 +
firmware/ti_3410.fw.ihex | 862 ++
firmware/ti_5052.fw.ihex | 862 ++
firmware/tr_smctr.bin.ihex | 477 ++
firmware/ttusb-budget/dspbootcode.bin.ihex | 820 ++
firmware/vicam/firmware.H16 | 7 +
firmware/whiteheat.HEX | 1097 +++
firmware/whiteheat_loader.HEX | 314 +
firmware/whiteheat_loader_debug.HEX | 403 +
firmware/yamaha/ds1_ctrl.fw.ihex | 769 ++
firmware/yamaha/ds1_dsp.fw.ihex | 9 +
firmware/yamaha/ds1e_ctrl.fw.ihex | 769 ++
include/asm-generic/vmlinux.lds.h | 7 +
include/linux/firmware.h | 23 +-
include/linux/ihex.h | 74 +
scripts/Makefile.fwinst | 45 +
sound/drivers/vx/vx_core.c | 4 +-
sound/isa/Kconfig | 9 -
sound/isa/sb/sb16_csp.c | 22 -
sound/isa/sb/sb16_csp_codecs.h | 949 ---
sound/pci/Kconfig | 30 -
sound/pci/korg1212/korg1212-firmware.h | 987 ---
sound/pci/korg1212/korg1212.c | 18 -
sound/pci/maestro3.c | 186 +-
sound/pci/mixart/mixart_hwdep.c | 2 +-
sound/pci/pcxhr/pcxhr_core.c | 4 +-
sound/pci/pcxhr/pcxhr_hwdep.c | 2 +-
sound/pci/riptide/riptide.c | 10 +-
sound/pci/vx222/vx222_ops.c | 2 +-
sound/pci/ymfpci/ymfpci_image.h | 1565 ----
sound/pci/ymfpci/ymfpci_main.c | 74 +-
183 files changed, 31965 insertions(+), 52599 deletions(-)
--
dwmw2 @linux.intel.com
next reply other threads:[~2008-07-14 23:23 UTC|newest]
Thread overview: 227+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-07-14 23:23 David Woodhouse [this message]
2008-07-14 23:41 ` Andrew Morton
2008-07-14 23:47 ` David Woodhouse
2008-07-14 23:53 ` Yinghai Lu
2008-07-15 0:23 ` David Woodhouse
2008-07-15 0:31 ` Yinghai Lu
2008-07-15 0:50 ` David Woodhouse
2008-07-15 1:08 ` Yinghai Lu
2008-07-15 7:50 ` Ingo Molnar
2008-07-15 0:50 ` Yinghai Lu
2008-07-15 0:52 ` David Woodhouse
2008-07-15 0:53 ` Yinghai Lu
2008-07-15 1:13 ` David Woodhouse
2008-07-15 20:45 ` Rafael J. Wysocki
2008-07-15 20:49 ` David Woodhouse
2008-07-15 20:57 ` David Woodhouse
2008-07-15 23:45 ` Rafael J. Wysocki
2008-07-16 7:01 ` David Woodhouse
2008-07-16 21:28 ` Rafael J. Wysocki
2008-07-16 22:42 ` David Woodhouse
2008-07-17 20:42 ` Rafael J. Wysocki
2008-07-17 21:25 ` David Woodhouse
2008-07-17 22:25 ` Rafael J. Wysocki
2008-07-18 4:15 ` David Woodhouse
2008-07-14 23:59 ` Arjan van de Ven
2008-07-15 0:06 ` david
2008-07-15 0:33 ` Linus Torvalds
2008-07-15 0:51 ` david
2008-07-15 1:02 ` Linus Torvalds
2008-07-15 1:18 ` david
2008-07-15 2:08 ` Linus Torvalds
2008-07-15 2:47 ` david
2008-07-15 7:57 ` Jeff Garzik
2008-07-15 15:04 ` Linus Torvalds
2008-07-15 17:01 ` Jeff Garzik
2008-07-15 17:09 ` Linus Torvalds
2008-07-15 17:30 ` Jeff Garzik
2008-07-15 17:41 ` Linus Torvalds
2008-07-15 17:45 ` Linus Torvalds
2008-07-15 18:11 ` Jeff Garzik
2008-07-15 18:21 ` Linus Torvalds
2008-07-15 18:33 ` Jeff Garzik
2008-07-15 18:20 ` Jeff Garzik
2008-07-15 18:25 ` Linus Torvalds
2008-07-15 18:30 ` David Woodhouse
2008-07-15 20:00 ` Marcel Holtmann
2008-07-15 20:06 ` David Woodhouse
2008-07-15 20:30 ` Marcel Holtmann
2008-07-15 21:24 ` david
2008-07-15 18:44 ` Jeff Garzik
2008-07-15 18:53 ` Linus Torvalds
2008-07-15 19:09 ` Jeff Garzik
2008-07-15 19:18 ` Linus Torvalds
2008-07-15 18:58 ` Theodore Tso
2008-07-15 19:14 ` Jeff Garzik
2008-07-15 19:19 ` Linus Torvalds
2008-07-15 19:23 ` Linus Torvalds
2008-07-15 21:14 ` Jeff Garzik
2008-07-15 21:24 ` David Woodhouse
2008-07-15 21:47 ` David Miller
2008-07-15 22:42 ` David Woodhouse
2008-07-15 22:45 ` David Miller
2008-07-15 23:05 ` Jeff Garzik
2008-07-15 21:24 ` Linus Torvalds
2008-07-15 21:39 ` Jeff Garzik
2008-07-15 22:12 ` David Woodhouse
2008-07-15 22:46 ` Jeff Garzik
2008-07-16 0:55 ` Sven-Haegar Koch
2008-07-16 8:02 ` Gabor Gombas
2008-07-16 4:55 ` Rene Herman
2008-07-15 19:27 ` David Woodhouse
2008-07-15 1:52 ` David Miller
2008-07-15 2:23 ` Rene Herman
2008-07-15 2:24 ` David Miller
2008-07-15 2:32 ` Rene Herman
2008-07-15 2:39 ` Linus Torvalds
2008-07-15 2:45 ` David Miller
2008-07-15 4:56 ` Arjan van de Ven
2008-07-15 5:09 ` David Woodhouse
2008-07-15 5:45 ` david
2008-07-15 6:03 ` David Woodhouse
2008-07-15 6:23 ` Oliver Neukum
2008-07-15 14:40 ` David Woodhouse
2008-07-15 16:52 ` Oliver Neukum
2008-07-15 18:09 ` David Woodhouse
2008-07-15 5:32 ` Rene Herman
2008-07-15 3:06 ` Rene Herman
2008-07-15 23:33 ` Alexandre Oliva
2008-07-15 5:15 ` Benjamin Herrenschmidt
2008-07-15 5:30 ` David Woodhouse
2008-07-15 1:50 ` David Miller
2008-07-15 2:54 ` David Woodhouse
2008-07-15 5:34 ` david
2008-07-15 0:36 ` David Woodhouse
2008-07-15 0:40 ` Linus Torvalds
2008-07-15 0:44 ` David Woodhouse
2008-07-15 5:05 ` Benjamin Herrenschmidt
2008-07-15 2:12 ` Jeff Garzik
2008-07-15 2:17 ` David Miller
2008-07-15 2:23 ` David Woodhouse
2008-07-15 2:52 ` david
2008-07-15 4:45 ` Willy Tarreau
2008-07-15 1:54 ` Jeff Garzik
2008-07-15 2:13 ` Linus Torvalds
2008-07-15 2:19 ` David Miller
2008-07-15 2:22 ` Jeff Garzik
2008-07-15 2:33 ` Linus Torvalds
2008-07-15 2:40 ` David Miller
2008-07-15 2:51 ` Linus Torvalds
2008-07-15 3:05 ` Jeff Garzik
2008-07-15 4:58 ` Willy Tarreau
2008-07-15 14:55 ` Linus Torvalds
2008-07-15 15:09 ` david
2008-07-15 16:01 ` Linus Torvalds
2008-07-15 16:21 ` David Woodhouse
2008-07-15 17:56 ` david
2008-07-15 17:35 ` Willy Tarreau
2008-07-15 17:44 ` David Woodhouse
2008-07-15 3:15 ` Jeff Garzik
2008-07-15 3:29 ` Linus Torvalds
2008-07-15 5:06 ` Willy Tarreau
2008-07-15 5:32 ` David Woodhouse
2008-07-15 5:36 ` Willy Tarreau
2008-07-15 5:37 ` david
2008-07-16 0:10 ` Alexandre Oliva
2008-07-16 0:26 ` Linus Torvalds
2008-07-15 7:21 ` Jeff Garzik
2008-07-15 7:36 ` David Woodhouse
2008-07-15 8:07 ` Jeff Garzik
2008-07-15 15:10 ` Linus Torvalds
2008-07-15 16:53 ` Jeff Garzik
2008-07-15 17:16 ` Jeff Garzik
2008-07-15 17:25 ` Linus Torvalds
2008-07-15 17:54 ` Jeff Garzik
2008-07-15 8:14 ` Ingo Molnar
2008-07-15 8:24 ` Ingo Molnar
2008-07-15 12:42 ` Alan Cox
2008-07-17 21:31 ` David Miller
2008-07-15 2:48 ` David Woodhouse
2008-07-15 5:12 ` Willy Tarreau
2008-07-15 15:57 ` Frans Pop
2008-07-15 16:04 ` Arjan van de Ven
2008-07-15 16:24 ` Frans Pop
2008-07-15 16:36 ` Frans Pop
2008-07-15 17:33 ` Arjan van de Ven
2008-07-15 17:57 ` Frans Pop
2008-07-15 16:15 ` Linus Torvalds
2008-07-15 16:33 ` david
2008-07-15 16:41 ` Linus Torvalds
2008-07-15 17:25 ` Frans Pop
2008-07-15 17:36 ` David Woodhouse
2008-07-15 19:22 ` Marcel Holtmann
2008-07-15 16:35 ` Linus Torvalds
2008-07-15 16:48 ` Frans Pop
2008-07-15 17:07 ` Linus Torvalds
2008-07-15 19:26 ` Marcel Holtmann
2008-07-15 16:37 ` Frans Pop
2008-07-15 18:05 ` Henrique de Moraes Holschuh
2008-07-15 18:14 ` Jeff Garzik
2008-07-15 18:24 ` Linus Torvalds
2008-07-15 18:37 ` Chris Friesen
2008-07-15 18:55 ` Jeff Garzik
2008-07-15 19:02 ` Linus Torvalds
2008-07-15 19:41 ` david
2008-07-15 19:59 ` Jeff Garzik
2008-07-15 20:15 ` Linus Torvalds
2008-07-15 20:55 ` Jeff Garzik
2008-07-15 23:02 ` Dave Jones
2008-07-15 23:46 ` Jeff Garzik
2008-07-16 0:00 ` Dave Jones
2008-07-16 0:10 ` Chris Adams
2008-07-16 6:04 ` Jeff Garzik
2008-07-15 19:07 ` David Woodhouse
2008-07-15 19:29 ` Peter T. Breuer
2008-07-15 18:20 ` David Woodhouse
2008-07-15 19:13 ` Frans Pop
2008-07-15 19:39 ` Marcel Holtmann
2008-07-15 19:20 ` Marcel Holtmann
2008-07-15 19:27 ` Linus Torvalds
2008-07-15 19:31 ` Marcel Holtmann
2008-07-15 19:38 ` Linus Torvalds
2008-07-15 19:44 ` Marcel Holtmann
2008-07-15 22:19 ` Adrian Bunk
2008-07-15 19:32 ` Linus Torvalds
2008-07-15 19:36 ` David Woodhouse
2008-07-15 19:49 ` Linus Torvalds
2008-07-15 19:54 ` Marcel Holtmann
2008-07-15 20:07 ` Linus Torvalds
2008-07-15 20:21 ` Marcel Holtmann
2008-07-15 20:30 ` Linus Torvalds
2008-07-15 20:33 ` Jeff Garzik
2008-07-15 21:17 ` Jeff Garzik
2008-07-15 20:26 ` Jeff Garzik
2008-07-15 20:47 ` Willy Tarreau
2008-07-15 21:24 ` Jeff Garzik
2008-07-16 22:05 ` Diego Calleja
2008-07-15 21:27 ` david
2008-07-15 21:40 ` Jeff Garzik
2008-07-15 21:43 ` Linus Torvalds
2008-07-15 22:20 ` Frans Pop
2008-07-15 22:24 ` david
2008-07-15 22:26 ` David Woodhouse
2008-07-15 22:50 ` david
2008-07-15 23:42 ` Linus Torvalds
2008-07-16 0:22 ` Frans Pop
2008-07-16 0:28 ` Linus Torvalds
2008-07-16 0:43 ` Jeff Garzik
2008-07-16 1:11 ` Prosaic firmware issues Alexey Dobriyan
2008-07-16 1:45 ` Linus Torvalds
2008-07-16 5:54 ` David Woodhouse
2008-07-16 14:19 ` Alexey Dobriyan
2008-07-16 4:42 ` [GIT *] Allow request_firmware() to be satisfied from in-kernel, use it in more drivers Willy Tarreau
2008-09-12 20:59 ` Jeff Garzik
2008-09-12 21:43 ` Willy Tarreau
2008-07-16 0:51 ` Theodore Tso
2008-07-16 1:36 ` Dave Jones
2008-07-16 2:39 ` Theodore Tso
2008-07-16 3:07 ` Jeff Garzik
2008-07-16 9:09 ` Peter Zijlstra
2008-07-15 19:57 ` David Woodhouse
2008-07-15 20:10 ` Marcel Holtmann
2008-07-15 20:17 ` Linus Torvalds
2008-07-15 20:25 ` Marcel Holtmann
2008-07-15 23:04 ` Dave Jones
2008-07-15 1:44 ` David Miller
2008-07-15 9:57 ` Marcel Holtmann
2008-07-15 1:45 ` Jeff Garzik
[not found] <aPHZW-47Y-17@gated-at.bofh.it>
[not found] ` <aPIje-4ST-15@gated-at.bofh.it>
[not found] ` <aPV6W-3jN-41@gated-at.bofh.it>
[not found] ` <aPX8A-7qb-21@gated-at.bofh.it>
[not found] ` <aPXii-7G3-25@gated-at.bofh.it>
[not found] ` <aPXs2-7Vn-25@gated-at.bofh.it>
[not found] ` <aPXUQ-aU-1@gated-at.bofh.it>
[not found] ` <aPY4D-G7-23@gated-at.bofh.it>
[not found] ` <aPZ0H-2ls-21@gated-at.bofh.it>
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1216077806.27455.85.camel@shinybook.infradead.org \
--to=dwmw2@infradead.org \
--cc=akpm@linux-foundation.org \
--cc=alan@lxorguk.ukuu.org.uk \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®