1. 24 9月, 2005 1 次提交
  2. 23 9月, 2005 1 次提交
  3. 22 9月, 2005 2 次提交
  4. 18 9月, 2005 3 次提交
  5. 17 9月, 2005 1 次提交
  6. 13 9月, 2005 10 次提交
  7. 12 9月, 2005 8 次提交
    • T
      [ALSA] Replace with kzalloc() - others · 561b220a
      Takashi Iwai 提交于
      Documentation,SA11xx UDA1341 driver,Generic drivers,MPU401 UART,OPL3
      OPL4,Digigram VX core,I2C cs8427,I2C lib core,I2C tea6330t,L3 drivers
      AK4114 receiver,AK4117 receiver,PDAudioCF driver,PPC PMAC driver
      SPARC AMD7930 driver,SPARC cs4231 driver,Synth,Common EMU synth
      USB generic driver,USB USX2Y
      Replace kcalloc(1,..) with kzalloc().
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      561b220a
    • T
      [ALSA] intel8x0 - Add buggy_semaphore option · a06147d2
      Takashi Iwai 提交于
      Documentation,Intel8x0 driver
      Added buggy_semaphore module option to snd-intel8x0 driver
      for a workaround for hardwards with buggy codec semaphores.
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      a06147d2
    • T
      [ALSA] pcm-oss - Add bugg-yptr option · 10f69f9e
      Takashi Iwai 提交于
      Documentation,ALSA<-OSS emulation
      Added 'buggy-ptr' proc option to switch the behavior of GETOPTR ioctl.
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      10f69f9e
    • T
      [ALSA] Update/fix ALSA document · 6243008b
      Takashi Iwai 提交于
      Documentation
      Update/fix ALSA document.
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      6243008b
    • C
      [ALSA] ad1889: add AD1889 driver docs · 84010e6f
      Clemens Ladisch 提交于
      Documentation
      move the AD1889 driver docs to the kernel tree, too
      Signed-off-by: NClemens Ladisch <clemens@ladisch.de>
      84010e6f
    • A
      [PATCH] i810fb: Update i810fb documentation · c93a7771
      Antonino A. Daplas 提交于
      Update i810fb documentation to describe new features and configuration
      changes.
      Signed-off-by: NAntonino Daplas <adaplas@pol.net>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      c93a7771
    • E
      [NET]: Add netlink connector. · 7672d0b5
      Evgeniy Polyakov 提交于
      Kernel connector - new userspace <-> kernel space easy to use
      communication module which implements easy to use bidirectional
      message bus using netlink as it's backend.  Connector was created to
      eliminate complex skb handling both in send and receive message bus
      direction.
      
      Connector driver adds possibility to connect various agents using as
      one of it's backends netlink based network.  One must register
      callback and identifier. When driver receives special netlink message
      with appropriate identifier, appropriate callback will be called.
      
      From the userspace point of view it's quite straightforward:
      
      	socket();
      	bind();
      	send();
      	recv();
      
      But if kernelspace want to use full power of such connections, driver
      writer must create special sockets, must know about struct sk_buff
      handling...  Connector allows any kernelspace agents to use netlink
      based networking for inter-process communication in a significantly
      easier way:
      
      int cn_add_callback(struct cb_id *id, char *name, void (*callback) (void *));
      void cn_netlink_send(struct cn_msg *msg, u32 __groups, int gfp_mask);
      
      struct cb_id
      {
      	__u32			idx;
      	__u32			val;
      };
      
      idx and val are unique identifiers which must be registered in
      connector.h for in-kernel usage.  void (*callback) (void *) - is a
      callback function which will be called when message with above idx.val
      will be received by connector core.
      
      Using connector completely hides low-level transport layer from it's
      users.
      
      Connector uses new netlink ability to have many groups in one socket.
      
      [ Incorporating many cleanups and fixes by myself and
        Andrew Morton -DaveM ]
      Signed-off-by: NEvgeniy Polyakov <johnpol@2ka.mipt.ru>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      7672d0b5
    • S
      kbuild: rename prepare to archprepare to fix dependency chain · 5bb78269
      Sam Ravnborg 提交于
      When introducing the generic asm-offsets.h support the dependency
      chain for the prepare targets was changed. All build scripts expecting
      include/asm/asm-offsets.h to be made when using the prepare target would broke.
      With the limited number of prepare targets left in arch Makefiles
      the trivial solution was to introduce a new arch specific target: archprepare
      
      The dependency chain looks like this now:
      
      prepare
        |
        +--> prepare0
               |
               +--> archprepare
                      |
      		+--> scripts_basic
                      +--> prepare1
                             |
                             +---> prepare2
                                     |
                                     +--> prepare3
      
      So prepare 3 is processed before prepare2 etc.
      This guaantees that the asm symlink, version.h, scripts_basic
      are all updated before archprepare is processed.
      
      prepare0 which build the asm-offsets.h file will need the
      actions performed by archprepare.
      
      The head target is now named prepare, because users scripts will most
      likely use that target, but prepare-all has been kept for compatibility.
      Updated Documentation/kbuild/makefiles.txt.
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      5bb78269
  8. 11 9月, 2005 6 次提交
  9. 10 9月, 2005 8 次提交
新手
引导
客服 返回
顶部