I dunno.  Maybe different BIOS versions for those contain UPPERCASE DMI
entries instead?

On 8 April 2015 at 10:09, Steve @ C_Xperimental <[email protected]>
wrote:

> Package: src:linux
> Version: 3.2.65-1+deb7u2
> Severity: minor
>
> Dear Maintainer,
> I was reading the HDD source code
>
> drivers/ata/ata_piix.c
>
> In current versions and later versions too, there is apparently a
> typographical
> bug in the file written by Red Hat which duplicates some of the entries.
> This is not a huge problem but it wastes a few bytes and cpu cycles.
> I have not tried to compile the hard drive driver with the duplicate
> entries
> removed and tested this, but it looks quite obvious to me that it's a copy
> and
> paste failure. It would check twice for the relevant models:
> Tecra M3
> Tecra M4
> Satellite U200
> (NOT the Pro U200 though)
> Satellite U205
> (and some lines are over 80 characters long!)
>
> >From latest kernel source code Linux 4.0-rc7 :
>
> #ifdef CONFIG_PM_SLEEP
> static int piix_broken_suspend(void)
> {
>         static const struct dmi_system_id sysids[] = {
>                 {
>                         .ident = "TECRA M3",
>                         .matches = {
>                                 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
>                                 DMI_MATCH(DMI_PRODUCT_NAME, "TECRA M3"),
>                         },
>                 },
>                 {
>                         .ident = "TECRA M3",
>                         .matches = {
>                                 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
>                                 DMI_MATCH(DMI_PRODUCT_NAME, "Tecra M3"),
>                         },
>                 },
>                 {
>                         .ident = "TECRA M4",
>                         .matches = {
>                                 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
>                                 DMI_MATCH(DMI_PRODUCT_NAME, "Tecra M4"),
>                         },
>                 },
>                 {
>                         .ident = "TECRA M4",
>                         .matches = {
>                                 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
>                                 DMI_MATCH(DMI_PRODUCT_NAME, "TECRA M4"),
>                         },
>                 },
>                 {
>                         .ident = "TECRA M5",
>                         .matches = {
>                                 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
>                                 DMI_MATCH(DMI_PRODUCT_NAME, "TECRA M5"),
>                         },
>                 },
>                 {
>                         .ident = "TECRA M6",
>                         .matches = {
>                                 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
>                                 DMI_MATCH(DMI_PRODUCT_NAME, "TECRA M6"),
>                         },
>                 },
>                 {
>                         .ident = "TECRA M7",
>                         .matches = {
>                                 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
>                                 DMI_MATCH(DMI_PRODUCT_NAME, "TECRA M7"),
>                         },
>                 },
>                 {
>                         .ident = "TECRA A8",
>                         .matches = {
>                                 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
>                                 DMI_MATCH(DMI_PRODUCT_NAME, "TECRA A8"),
>                         },
>                 },
>                 {
>                         .ident = "Satellite R20",
>                         .matches = {
>                                 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
>                                 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite
> R20"),
>                         },
>                 },
>                 {
>                         .ident = "Satellite R25",
>                         .matches = {
>                                 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
>                                 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite
> R25"),
>                         },
>                 },
>                 {
>                         .ident = "Satellite U200",
>                         .matches = {
>                                 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
>                                 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite
> U200"),
>                         },
>                 },
>                 {
>                         .ident = "Satellite U200",
>                         .matches = {
>                                 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
>                                 DMI_MATCH(DMI_PRODUCT_NAME, "SATELLITE
> U200"),
>                         },
>                 },
>                 {
>                         .ident = "Satellite Pro U200",
>                         .matches = {
>                                 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
>                                 DMI_MATCH(DMI_PRODUCT_NAME, "SATELLITE PRO
> U200"
> ),
>                         },
>                 },
>                 {
>                         .ident = "Satellite U205",
>                         .matches = {
>                                 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
>                                 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite
> U205"),
>                         },
>                 },
>                 {
>                         .ident = "SATELLITE U205",
>                         .matches = {
>                                 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
>                                 DMI_MATCH(DMI_PRODUCT_NAME, "SATELLITE
> U205"),
>                         },
>                 },
>                         .ident = "Satellite Pro A120",
>                         .matches = {
>                                 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
>                                 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite Pro
> A120"
> ),
>                         },
>                 },
>                 {
>                         .ident = "Portege M500",
>                         .matches = {
>                                 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
>                                 DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE
> M500"),
>                         },
>                 },
>                 {
>                         .ident = "VGN-BX297XP",
>                         .matches = {
>                                 DMI_MATCH(DMI_SYS_VENDOR, "Sony
> Corporation"),
>                                 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-BX297XP"),
>                         },
>                 },
>
>                 { }     /* terminate list */
>         };
>
>
>
> -- Package-specific info:
> ** Version:
> Linux version 3.2.0-4-486 ([email protected]) (gcc version
> 4.6.3 (Debian 4.6.3-14) ) #1 Debian 3.2.65-1+deb7u2
>
> ** Command line:
> auto BOOT_IMAGE=Linux ro root=UUID=da104cc8-7ee8-4ed9-95a4-849655e2c75e
>
> ** Tainted: O (4096)
>  * Out-of-tree module has been loaded.
>
> ** Kernel log:
> [   21.440640] wmi: Mapper loaded
> [   21.607112] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x100-0x3af:
> [   21.608288] pcmcia_socket pcmcia_socket0: cs: IO port probe
> 0x100-0x3af: excluding 0x170-0x177 0x1f0-0x1f7 0x370-0x37f
> [   21.610081] pcmcia_socket pcmcia_socket0: cs: IO port probe
> 0x3e0-0x4ff: excluding 0x3f0-0x3ff 0x4d0-0x4d7
> [   21.610938] pcmcia_socket pcmcia_socket0: cs: IO port probe
> 0x820-0x8ff: excluding nothing: probe failed.
> [   21.611184] pcmcia_socket pcmcia_socket0: cs: IO port probe
> 0xc00-0xcf7: clean.
> [   21.611901] pcmcia_socket pcmcia_socket0: cs: memory probe
> 0x0c0000-0x0fffff: excluding 0xc0000-0xcffff excluding 0x170-0x177
> 0x1f0-0x1f7 0x370-0x37f
> [   21.613097]  0xf0000-0xfffff
> [   21.613241] pcmcia_socket pcmcia_socket0: cs: memory probe
> 0xa0000000-0xa0ffffff: clean.
> [   21.613431] pcmcia_socket pcmcia_socket0: cs: memory probe
> 0x60000000-0x60ffffff: clean.
> [   21.613622] pcmcia_socket pcmcia_socket0: cs: IO port probe
> 0xa00-0xaff: clean.
> [   21.651113] snd_intel8x0m 0000:00:1f.6: setting latency timer to 64
> [   21.657423] snd_intel8x0 0000:00:1f.5: setting latency timer to 64
> [   21.732403] [drm] nouveau 0000:01:00.0: Detected an NV10 generation
> card (0x017400a5)
> [   21.734330] [drm] nouveau 0000:01:00.0: Checking PRAMIN for VBIOS
> [   21.788513] [drm] nouveau 0000:01:00.0: ... appears to be valid
> [   21.788580] [drm] nouveau 0000:01:00.0: Using VBIOS from PRAMIN
> [   21.789097] [drm] nouveau 0000:01:00.0: BMP BIOS found
> [   21.789162] [drm] nouveau 0000:01:00.0: BMP version 5.21
> [   21.789228] [drm] nouveau 0000:01:00.0: Bios version 04.17.00.55
> [   21.790356] [drm] nouveau 0000:01:00.0: MXM: no VBIOS data, nothing to
> do
> [   21.790431] [drm] nouveau 0000:01:00.0: DCB version 2.0
> [   21.790498] [drm] nouveau 0000:01:00.0: DCB outp 00: 03000223 00000004
> [   21.790567] [drm] nouveau 0000:01:00.0: DCB outp 01: 01010100 000088b8
> [   21.790634] [drm] nouveau 0000:01:00.0: DCB outp 02: 020203f1 00000003
> [   21.791160] [drm] nouveau 0000:01:00.0: Loading NV17 power sequencing
> microcode
> [   21.791247] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 0 at
> offset 0xCDF4
> [   21.791385] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 1 at
> offset 0xD13A
> [   21.805609] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 2 at
> offset 0xCF0F
> [   21.846018] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 3 at
> offset 0xD6C9
> [   21.846113] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 4 at
> offset 0xD096
> [   21.846205] [drm] nouveau 0000:01:00.0: BIOS FP mode: 1600x1200
> (162000kHz pixel clock)
> [   21.849509] [TTM] Zone  kernel: Available graphics memory: 447690 kiB
> [   21.849585] [TTM] Zone highmem: Available graphics memory: 517266 kiB
> [   21.849650] [TTM] Initializing pool allocator
> [   21.849746] [drm] nouveau 0000:01:00.0: Detected 32MiB VRAM (DDR1)
> [   21.850150] agpgart-intel 0000:00:00.0: AGP 2.0 bridge
> [   21.850251] agpgart-intel 0000:00:00.0: putting AGP V2 device into 4x
> mode
> [   21.850352] nouveau 0000:01:00.0: putting AGP V2 device into 4x mode
> [   21.850446] [drm] nouveau 0000:01:00.0: 64 MiB GART (aperture)
> [   21.850620] [drm] nouveau 0000:01:00.0: Saving VGA fonts
> [   21.921002] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
> [   21.921073] [drm] No driver support for vblank timestamp query.
> [   21.927015] [drm] nouveau 0000:01:00.0: 1 available performance level(s)
> [   21.927081] [drm] nouveau 0000:01:00.0: 0: memory 400MHz
> [   21.927141] [drm] nouveau 0000:01:00.0: c: core 220MHz memory 405MHz
> [   21.958554] [drm] nouveau 0000:01:00.0: Calling LVDS script 1:
> [   21.958649] [drm] nouveau 0000:01:00.0: Calling LVDS script 6:
> [   21.958702] [drm] nouveau 0000:01:00.0: 0xE480: Parsing digital output
> script table
> [   22.459836] [drm] nouveau 0000:01:00.0: Setting dpms mode 3 on TV
> encoder (output 2)
> [   22.572043] intel8x0_measure_ac97_clock: measured 54423 usecs (2616
> samples)
> [   22.572104] intel8x0: clocking to 48000
> [   22.572757] [drm] nouveau 0000:01:00.0: allocated 1400x1050 fb:
> 0x49000, bo f6391600
> [   22.573422] fbcon: nouveaufb (fb0) is primary device
> [   22.602973] [drm] nouveau 0000:01:00.0: Calling LVDS script 2:
> [   22.602980] [drm] nouveau 0000:01:00.0: 0xE517: Parsing digital output
> script table
> [   22.634791] [drm] nouveau 0000:01:00.0: Calling LVDS script 5:
> [   22.634796] [drm] nouveau 0000:01:00.0: 0xE41A: Parsing digital output
> script table
> [   22.634841] pcmcia_socket pcmcia_socket1: pccard: CardBus card inserted
> into slot 1
> [   22.634870] pci 0000:07:00.0: [1814:0701] type 0 class 0x000280
> [   22.634902] pci 0000:07:00.0: reg 10: [mem 0xffff0000-0xffffffff]
> [   22.635047] pci 0000:07:00.0: BAR 0: assigned [mem
> 0x4c000000-0x4c00ffff]
> [   22.635264] pcmcia_socket pcmcia_socket1: cs: IO port probe
> 0x3e0-0x4ff: excluding 0x3f0-0x3ff 0x4d0-0x4d7
> [   22.635869] pcmcia_socket pcmcia_socket1: cs: IO port probe
> 0x820-0x8ff: excluding nothing: probe failed.
> [   22.635934] pcmcia_socket pcmcia_socket1: cs: IO port probe
> 0xc00-0xcf7: clean.
> [   22.636484] pcmcia_socket pcmcia_socket1: cs: memory probe
> 0x0c0000-0x0fffff: excluding 0xc0000-0xcffff 0xf0000-0xfffff
> [   22.636538] pcmcia_socket pcmcia_socket1: cs: memory probe
> 0xa0000000-0xa0ffffff: clean.
> [   22.636590] pcmcia_socket pcmcia_socket1: cs: memory probe
> 0x60000000-0x60ffffff: clean.
> [   22.636642] pcmcia_socket pcmcia_socket1: cs: IO port probe
> 0xa00-0xaff: clean.
> [   22.642188] Console: switching to colour frame buffer device 175x65
> [   22.644847] fb0: nouveaufb frame buffer device
> [   22.644865] drm: registered panic notifier
> [   22.660047] [drm] Initialized nouveau 1.0.0 20120316 for 0000:01:00.0
> on minor 0
> [   22.726177] rt2860 0000:07:00.0: enabling device (0000 -> 0002)
> [   22.726282] rt2860 0000:07:00.0: setting latency timer to 64
> [   22.907324] input: DualPoint Stick as
> /devices/platform/i8042/serio1/input/input6
> [   22.930534] input: AlpsPS/2 ALPS DualPoint TouchPad as
> /devices/platform/i8042/serio1/input/input7
> [   24.269969] Adding 979964k swap on /dev/sda5.  Priority:-1 extents:1
> across:979964k
> [   24.317888] EXT4-fs (sda1): re-mounted. Opts: (null)
> [   24.747650] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
> [   24.920153] loop: module loaded
> [   28.370221] 0x1300 = 00064300
> [   30.770957] Bluetooth: Core ver 2.16
> [   30.771032] NET: Registered protocol family 31
> [   30.771040] Bluetooth: HCI device and connection manager initialized
> [   30.771049] Bluetooth: HCI socket layer initialized
> [   30.771056] Bluetooth: L2CAP socket layer initialized
> [   30.771753] Bluetooth: SCO socket layer initialized
> [   30.796199] Bluetooth: RFCOMM TTY layer initialized
> [   30.796217] Bluetooth: RFCOMM socket layer initialized
> [   30.796225] Bluetooth: RFCOMM ver 1.11
> [   30.801327] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
> [   30.801340] Bluetooth: BNEP filters: protocol multicast
> [   30.833770] [drm] nouveau 0000:01:00.0: Calling LVDS script 6:
> [   30.833786] [drm] nouveau 0000:01:00.0: 0xE480: Parsing digital output
> script table
> [   31.359691] [drm] nouveau 0000:01:00.0: Calling LVDS script 2:
> [   31.359701] [drm] nouveau 0000:01:00.0: 0xE517: Parsing digital output
> script table
> [   31.394115] [drm] nouveau 0000:01:00.0: Calling LVDS script 5:
> [   31.394124] [drm] nouveau 0000:01:00.0: 0xE41A: Parsing digital output
> script table
> [   38.400034] ra0: no IPv6 routers present
>
> ** Model information
> not available
>
> ** Loaded modules:
> bnep
> rfcomm
> bluetooth
> rfkill
> loop
> joydev
> rt2860sta(O)
> nouveau
> snd_intel8x0
> snd_intel8x0m
> snd_ac97_codec
> mxm_wmi
> wmi
> ttm
> snd_pcm
> drm_kms_helper
> snd_page_alloc
> drm
> psmouse
> snd_timer
> ac97_bus
> pcmcia
> i2c_algo_bit
> i2c_core
> snd
> soundcore
> serio_raw
> pcspkr
> parport_pc
> yenta_socket
> iTCO_wdt
> pcmcia_rsrc
> parport
> pcmcia_core
> iTCO_vendor_support
> ac
> acpi_cpufreq
> battery
> evdev
> dcdbas
> mperf
> video
> button
> shpchp
> rng_core
> processor
> ext4
> crc16
> jbd2
> mbcache
> sg
> sd_mod
> sr_mod
> crc_t10dif
> cdrom
> ata_generic
> ata_piix
> libata
> floppy
> firewire_ohci
> scsi_mod
> uhci_hcd
> ehci_hcd
> usbcore
> firewire_core
> crc_itu_t
> 3c59x
> mii
> thermal
> thermal_sys
> usb_common
>
> ** Network interface configuration:
>
> auto lo
> iface lo inet loopback
>
> allow-hotplug ra0
> iface ra0 inet dhcp
> wpa-ssid Spiderland
> wpa-psk **********************
>
> allow-hotplug wlan0
> iface wlan0 inet dhcp
> wpa-ssid Spiderland
> wpa-psk **********************
>
>
> ** Network status:
> *** IP interfaces and addresses:
> 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN
>     link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
>     inet 127.0.0.1/8 scope host lo
>     inet6 ::1/128 scope host
>        valid_lft forever preferred_lft forever
> 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN qlen 1000
>     link/ether 00:0b:db:13:a5:d1 brd ff:ff:ff:ff:ff:ff
> 3: ra0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state
> UP qlen 1000
>     link/ether 00:1c:df:8d:fc:d8 brd ff:ff:ff:ff:ff:ff
>     inet 192.168.1.65/24 brd 192.168.1.255 scope global ra0
>     inet6 fe80::21c:dfff:fe8d:fcd8/64 scope link
>        valid_lft forever preferred_lft forever
>
> *** Device statistics:
> Inter-|   Receive                                                |
> Transmit
>  face |bytes    packets errs drop fifo frame compressed multicast|bytes
> packets errs drop fifo colls carrier compressed
>     lo:    2300      38    0    0    0     0          0         0
>  2300      38    0    0    0     0       0          0
>    ra0: 20998033   91615    0    0    0     0          0       563
> 1088276    6047    0    0    0     0       0          0
>   eth0:       0       0    0    0    0     0          0         0
> 0       0    0    0    0     0       0          0
>
> *** Protocol statistics:
> Ip:
>     5757 total packets received
>     2 with invalid addresses
>     0 forwarded
>     0 incoming packets discarded
>     5755 incoming packets delivered
>     5623 requests sent out
>     12 dropped because of missing route
> Icmp:
>     0 ICMP messages received
>     0 input ICMP message failed.
>     ICMP input histogram:
>     0 ICMP messages sent
>     0 ICMP messages failed
>     ICMP output histogram:
> Tcp:
>     160 active connections openings
>     0 passive connection openings
>     20 failed connection attempts
>     2 connection resets received
>     1 connections established
>     5293 segments received
>     5157 segments send out
>     2 segments retransmited
>     0 bad segments received.
>     68 resets sent
> Udp:
>     460 packets received
>     0 packets to unknown port received.
>     0 packet receive errors
>     460 packets sent
> UdpLite:
> TcpExt:
>     2 packets pruned from receive queue because of socket buffer overrun
>     72 TCP sockets finished time wait in fast timer
>     140 delayed acks sent
>     Quick ack mode was activated 10 times
>     2333 packet headers predicted
>     851 acknowledgments not containing data payload received
>     203 predicted acknowledgments
>     2 congestion windows recovered without slow start after partial ack
>     2 other TCP timeouts
>     50 packets collapsed in receive queue due to low socket buffer
>     9 DSACKs sent for old packets
>     1 DSACKs received
>     12 connections reset due to unexpected data
>     1 connections reset due to early user close
>     1 connections aborted due to timeout
>     TCPSackShiftFallback: 1
> IpExt:
>     InMcastPkts: 43
>     OutMcastPkts: 45
>     InOctets: 5190368
>     OutOctets: 781464
>     InMcastOctets: 4737
>     OutMcastOctets: 4905
>
>
> ** PCI devices:
> 00:00.0 Host bridge [0600]: Intel Corporation 82845 845 [Brookdale]
> Chipset Host Bridge [8086:1a30] (rev 04)
>         Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop-
> ParErr- Stepping- SERR+ FastB2B- DisINTx-
>         Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort-
> <TAbort- <MAbort+ >SERR- <PERR- INTx-
>         Latency: 0
>         Region 0: Memory at e8000000 (32-bit, prefetchable) [size=64M]
>         Capabilities: <access denied>
>         Kernel driver in use: agpgart-intel
>
> 00:01.0 PCI bridge [0604]: Intel Corporation 82845 845 [Brookdale] Chipset
> AGP Bridge [8086:1a31] (rev 04) (prog-if 00 [Normal decode])
>         Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop-
> ParErr- Stepping- SERR+ FastB2B- DisINTx-
>         Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort-
> <TAbort- <MAbort- >SERR- <PERR- INTx-
>         Latency: 32
>         Bus: primary=00, secondary=01, subordinate=01, sec-latency=32
>         I/O behind bridge: 0000c000-0000cfff
>         Memory behind bridge: fc000000-fdffffff
>         Prefetchable memory behind bridge: d8000000-e7ffffff
>         Secondary status: 66MHz+ FastB2B+ ParErr- DEVSEL=medium >TAbort-
> <TAbort- <MAbort+ <SERR- <PERR-
>         BridgeCtl: Parity- SERR+ NoISA+ VGA+ MAbort- >Reset- FastB2B-
>                 PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
>
> 00:1d.0 USB controller [0c03]: Intel Corporation 82801CA/CAM USB
> Controller #1 [8086:2482] (rev 02) (prog-if 00 [UHCI])
>         Subsystem: Intel Corporation Latitude C640 [8086:4541]
>         Physical Slot: 1
>         Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop-
> ParErr- Stepping- SERR- FastB2B- DisINTx-
>         Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort-
> <TAbort- <MAbort- >SERR- <PERR- INTx-
>         Latency: 0
>         Interrupt: pin A routed to IRQ 11
>         Region 4: I/O ports at bf80 [size=32]
>         Kernel driver in use: uhci_hcd
>
> 00:1d.2 USB controller [0c03]: Intel Corporation 82801CA/CAM USB
> Controller #3 [8086:2487] (rev 02) (prog-if 00 [UHCI])
>         Subsystem: Intel Corporation Device [8086:4541]
>         Physical Slot: 1
>         Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop-
> ParErr- Stepping- SERR- FastB2B- DisINTx-
>         Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort-
> <TAbort- <MAbort- >SERR- <PERR- INTx-
>         Latency: 0
>         Interrupt: pin C routed to IRQ 11
>         Region 4: I/O ports at bf20 [size=32]
>         Kernel driver in use: uhci_hcd
>
> 00:1e.0 PCI bridge [0604]: Intel Corporation 82801 Mobile PCI Bridge
> [8086:2448] (rev 42) (prog-if 00 [Normal decode])
>         Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop-
> ParErr- Stepping- SERR+ FastB2B- DisINTx-
>         Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort-
> <TAbort- <MAbort- >SERR- <PERR- INTx-
>         Latency: 0
>         Bus: primary=00, secondary=02, subordinate=10, sec-latency=32
>         I/O behind bridge: 0000e000-0000ffff
>         Memory behind bridge: f4000000-fbffffff
>         Prefetchable memory behind bridge: 44000000-4bffffff
>         Secondary status: 66MHz- FastB2B+ ParErr- DEVSEL=medium >TAbort-
> <TAbort- <MAbort+ <SERR- <PERR-
>         BridgeCtl: Parity- SERR+ NoISA+ VGA- MAbort- >Reset- FastB2B-
>                 PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
>
> 00:1f.0 ISA bridge [0601]: Intel Corporation 82801CAM ISA Bridge (LPC)
> [8086:248c] (rev 02)
>         Control: I/O+ Mem+ BusMaster+ SpecCycle+ MemWINV- VGASnoop-
> ParErr- Stepping- SERR+ FastB2B- DisINTx-
>         Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort-
> <TAbort- <MAbort- >SERR- <PERR- INTx-
>         Latency: 0
>
> 00:1f.1 IDE interface [0101]: Intel Corporation 82801CAM IDE U100
> Controller [8086:248a] (rev 02) (prog-if 8a [Master SecP PriP])
>         Subsystem: Intel Corporation Latitude C640 [8086:4541]
>         Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop-
> ParErr- Stepping- SERR- FastB2B- DisINTx-
>         Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort-
> <TAbort- <MAbort- >SERR- <PERR- INTx-
>         Latency: 0
>         Interrupt: pin A routed to IRQ 11
>         Region 0: I/O ports at 01f0 [size=8]
>         Region 1: I/O ports at 03f4 [size=1]
>         Region 2: I/O ports at 0170 [size=8]
>         Region 3: I/O ports at 0374 [size=1]
>         Region 4: I/O ports at bfa0 [size=16]
>         Region 5: Memory at 40000000 (32-bit, non-prefetchable) [size=1K]
>         Kernel driver in use: ata_piix
>
> 00:1f.5 Multimedia audio controller [0401]: Intel Corporation 82801CA/CAM
> AC'97 Audio Controller [8086:2485] (rev 02)
>         Subsystem: Cirrus Logic Crystal WMD Audio Codec [1013:5959]
>         Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop-
> ParErr- Stepping- SERR- FastB2B- DisINTx-
>         Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort-
> <TAbort- <MAbort- >SERR- <PERR- INTx-
>         Latency: 0
>         Interrupt: pin B routed to IRQ 5
>         Region 0: I/O ports at d800 [size=256]
>         Region 1: I/O ports at dc80 [size=64]
>         Kernel driver in use: snd_intel8x0
>
> 00:1f.6 Modem [0703]: Intel Corporation 82801CA/CAM AC'97 Modem Controller
> [8086:2486] (rev 02) (prog-if 00 [Generic])
>         Subsystem: PCTel Inc Dell Inspiron 2100 internal modem [134d:4c21]
>         Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop-
> ParErr- Stepping- SERR- FastB2B- DisINTx-
>         Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort-
> <TAbort- <MAbort- >SERR- <PERR- INTx-
>         Latency: 0
>         Interrupt: pin B routed to IRQ 5
>         Region 0: I/O ports at d400 [size=256]
>         Region 1: I/O ports at dc00 [size=128]
>         Kernel driver in use: snd_intel8x0m
>
> 01:00.0 VGA compatible controller [0300]: NVIDIA Corporation NV17
> [GeForce4 440 Go] [10de:0174] (rev a3) (prog-if 00 [VGA controller])
>         Subsystem: Dell Device [1028:00d5]
>         Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop+
> ParErr- Stepping- SERR- FastB2B- DisINTx-
>         Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort-
> <TAbort- <MAbort- >SERR- <PERR- INTx-
>         Latency: 32 (1250ns min, 250ns max)
>         Interrupt: pin A routed to IRQ 11
>         Region 0: Memory at fc000000 (32-bit, non-prefetchable) [size=16M]
>         Region 1: Memory at e0000000 (32-bit, prefetchable) [size=128M]
>         Region 2: Memory at dff80000 (32-bit, prefetchable) [size=512K]
>         Expansion ROM at d8000000 [disabled] [size=128K]
>         Capabilities: <access denied>
>         Kernel driver in use: nouveau
>
> 02:00.0 Ethernet controller [0200]: 3Com Corporation 3c905C-TX/TX-M
> [Tornado] [10b7:9200] (rev 78)
>         Subsystem: Dell Device [1028:00d5]
>         Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop-
> ParErr- Stepping- SERR+ FastB2B- DisINTx-
>         Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort-
> <TAbort- <MAbort- >SERR- <PERR- INTx-
>         Latency: 32 (2500ns min, 2500ns max), Cache Line Size: 32 bytes
>         Interrupt: pin A routed to IRQ 11
>         Region 0: I/O ports at ec80 [size=128]
>         Region 1: Memory at f8fffc00 (32-bit, non-prefetchable) [size=128]
>         Expansion ROM at f9000000 [disabled] [size=128K]
>         Capabilities: <access denied>
>         Kernel driver in use: 3c59x
>
> 02:01.0 CardBus bridge [0607]: Texas Instruments PCI4451 PC card Cardbus
> Controller [104c:ac42]
>         Subsystem: Dell Device [1028:00d5]
>         Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop-
> ParErr- Stepping- SERR- FastB2B- DisINTx-
>         Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort-
> <TAbort- <MAbort- >SERR- <PERR- INTx-
>         Latency: 168, Cache Line Size: 64 bytes
>         Interrupt: pin A routed to IRQ 11
>         Region 0: Memory at f4000000 (32-bit, non-prefetchable) [size=4K]
>         Bus: primary=02, secondary=03, subordinate=06, sec-latency=176
>         Memory window 0: 48000000-4bffffff (prefetchable)
>         Memory window 1: 50000000-53ffffff
>         I/O window 0: 0000f000-0000f0ff
>         I/O window 1: 0000e800-0000e8ff
>         BridgeCtl: Parity- SERR- ISA- VGA- MAbort- >Reset+ 16bInt+
> PostWrite+
>         16-bit legacy interface ports at 0001
>         Kernel driver in use: yenta_cardbus
>
> 02:01.1 CardBus bridge [0607]: Texas Instruments PCI4451 PC card Cardbus
> Controller [104c:ac42]
>         Subsystem: Dell Device [1028:00d5]
>         Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop-
> ParErr- Stepping- SERR- FastB2B- DisINTx-
>         Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort-
> <TAbort- <MAbort- >SERR- <PERR- INTx-
>         Latency: 168, Cache Line Size: 64 bytes
>         Interrupt: pin A routed to IRQ 11
>         Region 0: Memory at f8000000 (32-bit, non-prefetchable) [size=4K]
>         Bus: primary=02, secondary=07, subordinate=0a, sec-latency=176
>         Memory window 0: 44000000-47ffffff (prefetchable)
>         Memory window 1: 4c000000-4fffffff
>         I/O window 0: 0000e400-0000e4ff
>         I/O window 1: 0000e000-0000e0ff
>         BridgeCtl: Parity- SERR- ISA- VGA- MAbort- >Reset- 16bInt-
> PostWrite+
>         16-bit legacy interface ports at 0001
>         Kernel driver in use: yenta_cardbus
>
> 02:01.2 FireWire (IEEE 1394) [0c00]: Texas Instruments PCI4451 IEEE-1394
> Controller [104c:8027] (prog-if 10 [OHCI])
>         Subsystem: Dell Device [1028:00d5]
>         Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop-
> ParErr- Stepping- SERR+ FastB2B- DisINTx-
>         Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort-
> <TAbort- <MAbort- >SERR- <PERR- INTx-
>         Latency: 32 (500ns min, 1000ns max), Cache Line Size: 32 bytes
>         Interrupt: pin A routed to IRQ 11
>         Region 0: Memory at f8fff000 (32-bit, non-prefetchable) [size=2K]
>         Region 1: Memory at f8ff8000 (32-bit, non-prefetchable) [size=16K]
>         Capabilities: <access denied>
>         Kernel driver in use: firewire_ohci
>
> 07:00.0 Network controller [0280]: Ralink corp. RT2760 Wireless 802.11n
> 1T/2R [1814:0701]
>         Subsystem: Belkin Device [1799:811c]
>         Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop-
> ParErr- Stepping- SERR- FastB2B- DisINTx-
>         Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=slow >TAbort-
> <TAbort- <MAbort- >SERR- <PERR- INTx-
>         Latency: 64 (500ns min, 1000ns max), Cache Line Size: 32 bytes
>         Interrupt: pin A routed to IRQ 11
>         Region 0: Memory at 4c000000 (32-bit, non-prefetchable) [size=64K]
>         Capabilities: <access denied>
>         Kernel driver in use: rt2860
>
>
> ** USB devices:
> Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
> Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
>
>
> -- System Information:
> Debian Release: 7.8
>   APT prefers stable-updates
>   APT policy: (500, 'stable-updates'), (500, 'stable')
> Architecture: i386 (i686)
>
> Kernel: Linux 3.2.0-4-486
> Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8)
> Shell: /bin/sh linked to /bin/dash
>
> Versions of packages linux-image-3.2.0-4-486 depends on:
> ii  debconf [debconf-2.0]                   1.5.49
> ii  initramfs-tools [linux-initramfs-tool]  0.109.1
> ii  kmod                                    9-3
> ii  linux-base                              3.5
> ii  module-init-tools                       9-3
>
> Versions of packages linux-image-3.2.0-4-486 recommends:
> ii  firmware-linux-free  3.2
>
> Versions of packages linux-image-3.2.0-4-486 suggests:
> pn  debian-kernel-handbook  <none>
> ii  lilo                    1:23.2-4
> pn  linux-doc-3.2           <none>
>
> Versions of packages linux-image-3.2.0-4-486 is related to:
> pn  firmware-atheros        <none>
> pn  firmware-bnx2           <none>
> pn  firmware-bnx2x          <none>
> pn  firmware-brcm80211      <none>
> pn  firmware-intelwimax     <none>
> pn  firmware-ipw2x00        <none>
> pn  firmware-ivtv           <none>
> pn  firmware-iwlwifi        <none>
> pn  firmware-libertas       <none>
> pn  firmware-linux          <none>
> pn  firmware-linux-nonfree  <none>
> pn  firmware-myricom        <none>
> pn  firmware-netxen         <none>
> pn  firmware-qlogic         <none>
> pn  firmware-ralink         <none>
> pn  firmware-realtek        <none>
> pn  xen-hypervisor          <none>
>
> -- debconf information:
>   linux-image-3.2.0-4-486/prerm/removing-running-kernel-3.2.0-4-486: true
>   linux-image-3.2.0-4-486/postinst/depmod-error-initrd-3.2.0-4-486: false
>   linux-image-3.2.0-4-486/postinst/missing-firmware-3.2.0-4-486:
>   linux-image-3.2.0-4-486/postinst/ignoring-ramdisk:
>
>
> --
> To UNSUBSCRIBE, email to [email protected]
> with a subject of "unsubscribe". Trouble? Contact
> [email protected]
> Archive:
> https://lists.debian.org/20150408140952.3425.92717.reportbug@xzr-latitude
>
>

Reply via email to