25 Apr, 2006

24 commits


24 Apr, 2006

5 commits

  • * git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6:
    [PARISC] MAINTAINERS
    [PARISC] Make ioremap default to _nocache
    [PARISC] Add new entries to the syscall table
    [PARISC] Further work for multiple page sizes
    [PARISC] Fix up hil_kbd.c mismerge
    [PARISC] defconfig updates
    [PARISC] Document that we tolerate "Relaxed Ordering"
    [PARISC] Misc. janitorial work
    [PARISC] EISA regions must be mapped NO_CACHE
    [PARISC] OSS ad1889: Match register names with ALSA driver

    Linus Torvalds
     
  • * git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-fixes-2.6:
    [PATCH] pcmcia/pcmcia_resource.c: fix crash when using Cardbus cards
    [PATCH] vrc4171: update config
    [PATCH] pcmcia: fix oops in static mapping case
    [PATCH] pcmcia: remove unneeded forward declarations
    [PATCH] pcmcia: do not set dev_node to NULL too early
    [PATCH] pcmcia: fix comment for pcmcia_load_firmware
    [PATCH] pcmcia: unload second device first
    [PATCH] pcmcia: add new ID to pcnet_cs

    Linus Torvalds
     
  • * 'drm-patches' of git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6:
    drm: possible cleanups
    drm: fixup r300 scratch on BE machines

    Linus Torvalds
     
  • * master.kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6-stable:
    [CIFS] Fix typo in previous
    [CIFS] Readdir fixes to allow search to start at arbitrary position
    [CIFS] Use the kthread_ API instead of opencoding lots of hairy code for kernel
    [CIFS] Don't allow a backslash in a path component
    [CIFS] [CIFS] Do not take rename sem on most path based calls (during

    Linus Torvalds
     
  • * git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc-merge:
    powerpc: Fix define_machine so machine_is() works from modules
    powerpc/ppc: export strncasecmp
    [PATCH] powerpc: fix oops in alsa powermac driver
    [PATCH] powerpc: update {g5,iseries,pseries}_defconfigs
    [PATCH] ppc: Fix powersave code on arch/ppc
    [PATCH] powerpc/cell: remove BUILD_BUG_ON and add sys_tee to spu_syscall_table
    [PATCH] powermac: Fix i2c on keywest based chips
    [PATCH] powerpc: Lower threshold for DART enablement to 1GB
    [PATCH] powerpc: IOMMU support for honoring dma_mask

    Linus Torvalds
     

23 Apr, 2006

11 commits

  • This patch contains the following possible cleanups:
    - make the following needlessly global function static:
    - drm_bufs.c: drm_addbufs_fb()
    - remove the following unused EXPORT_SYMBOL's:
    - drm_agpsupport.c: drm_agp_bind_memory
    - drm_bufs.c: drm_rmmap_locked
    - drm_bufs.c: drm_rmmap
    - drm_stub.c: drm_get_dev

    Signed-off-by: Adrian Bunk
    Signed-off-by: Dave Airlie

    Dave Airlie
     
  • This fixes the r300 scratch stuff to work on PPC,
    from Ben Herrenschmidt on IRC.

    Signed-off-by: Dave Airlie

    Dave Airlie
     
  • Signed-off-by: Steve French

    Steve French
     
  • machine_is() was always returning 0 when used in a module, because
    we weren't exporting the machine definitions. This was why sound
    wasn't working on powermacs when CONFIG_SND_POWERMAC=m. Original
    fix from Ben Herrenschmidt, further fixed by me.

    Signed-off-by: Paul Mackerras

    Paul Mackerras
     
  • I recently found that not all BIOS manufacturers are using the specified
    generic PNP id in their TPM ACPI table entry. I have added the vendor
    specific IDs that I know about and added a module parameter that a user can
    specify another HID to the probe list if their device isn't being found by the
    default list.

    Signed-off-by: Kylene Hall
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Kylene Jo Hall
     
  • This patch adds a boolean module parameter that allows the user to turn
    interrupt support on and off. The default behavior is to attempt to use
    interrupts.

    Signed-off-by: Kylene Hall
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Kylene Jo Hall
     
  • Fixes minor spacing issues.

    Signed-off-by: Kylene Hall
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Kylene Jo Hall
     
  • Use __devexit_p() for the exit/remove function to protect against
    discarding it.

    WARNING: drivers/char/tpm/tpm_infineon.o - Section mismatch: reference to .exit.text:tpm_inf_pnp_remove from .data between 'tpm_inf_pnp' (at offset 0x20) and 'tpm_inf'

    Signed-off-by: Randy Dunlap
    Cc: Kylene Jo Hall
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Randy Dunlap
     
  • The acpi table which contains the BIOS log events was updated for 1.2.
    There are now client and server modes as defined in the specifications with
    slightly different formats. Additionally, the start field was even too
    small for the 1.1 version but had been working anyway. This patch updates
    the code to deal with any of the three types of headers probperly (1.1, 1.2
    client and 1.2 server).

    Signed-off-by: Kylie Hall
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Kylene Jo Hall
     
  • The memory start and length values obtained from the ACPI entry need to be
    checked and filled in with the default values from the specification if
    they don't exist. This patch fills in the default values and uses them
    appropriately.

    Signed-off-by: Kylie Hall
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Kylene Jo Hall
     
  • Apply the latest changes in the TPM interface to the Infineon TPM-driver.

    Signed-off-by: Marcel Selhorst
    Acked-by: Kylie Hall
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Marcel Selhorst