1. 04 11月, 2010 1 次提交
  2. 07 9月, 2010 1 次提交
    • J
      net/caif: Use pr_fmt · b31fa5ba
      Joe Perches 提交于
      This patch standardizes caif message logging prefixes.
      
      Add #define pr_fmt(fmt) KBUILD_MODNAME ":%s(): " fmt, __func__
      Add missing "\n"s to some logging messages
      Convert pr_warning to pr_warn
      
      This changes the logging message prefix from CAIF: to caif:
      for all uses but caif_socket.c and chnl_net.c.  Those now use
      their filename without extension.
      Signed-off-by: NJoe Perches <joe@perches.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      b31fa5ba
  3. 27 8月, 2010 1 次提交
    • J
      net/caif/cfrfml.c: use asm/unaligned.h · 7e368739
      Jeff Mahoney 提交于
      caif does not build on ia64 starting with 2.6.32-rc1.  Using
      asm/unaligned.h instead of linux/unaligned/le_byteshift.h fixes the issue.
      
      include/linux/unaligned/le_byteshift.h:40:50: error: redefinition of 'get_unaligned_le16'
      include/linux/unaligned/le_byteshift.h:45:50: error: redefinition of 'get_unaligned_le32'
      include/linux/unaligned/le_byteshift.h:50:50: error: redefinition of 'get_unaligned_le64'
      include/linux/unaligned/le_byteshift.h:55:51: error: redefinition of 'put_unaligned_le16'
      include/linux/unaligned/le_byteshift.h:60:51: error: redefinition of 'put_unaligned_le32'
      include/linux/unaligned/le_byteshift.h:65:51: error: redefinition of 'put_unaligned_le64'
      include/linux/unaligned/le_struct.h:31:51: note: previous definition of 'put_unaligned_le64' was here
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      7e368739
  4. 23 7月, 2010 1 次提交
  5. 21 6月, 2010 2 次提交
  6. 10 6月, 2010 1 次提交
  7. 31 3月, 2010 1 次提交
    • S
      net-caif: add CAIF core protocol stack · b482cd20
      Sjur Braendeland 提交于
      CAIF generic protocol implementation. This layer is
      somewhat generic in order to be able to use and test it outside
      the Linux Kernel.
      
      cfctrl.c     - CAIF control protocol layer
      cfdbgl.c     - CAIF debug protocol layer
      cfdgml.c     - CAIF datagram protocol layer
      cffrml.c     - CAIF framing protocol layer
      cfmuxl.c     - CAIF mux protocol layer
      cfrfml.c     - CAIF remote file manager protocol layer
      cfserl.c     - CAIF serial (fragmentation) protocol layer
      cfsrvl.c     - CAIF generic service layer functions
      cfutill.c    - CAIF utility protocol layer
      cfveil.c     - CAIF AT protocol layer
      cfvidl.c     - CAIF video protocol layer
      Signed-off-by: NSjur Braendeland <sjur.brandeland@stericsson.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      b482cd20