1. 06 Jan, 2015 7 commits
  2. 18 Nov, 2014 24 commits
  3. 17 Nov, 2014 3 commits
  4. 09 Oct, 2014 1 commit
    • Alessandro Rubini's avatar
      Merge branch 'no-no-posix' · 1c061f05
      Alessandro Rubini authored
      We finally agreed to not use ptp-noposix any more. This allows simplifying
      the main loop and library functions, in the future.
      1c061f05
  5. 08 Oct, 2014 2 commits
  6. 07 Oct, 2014 3 commits
    • Pietro Fezzardi's avatar
      softpll_ng.c: replace "/ 2" with ">> 1" · 35e279ee
      Pietro Fezzardi authored
      The previous version was compiled into a 64bit division
      by gcc. in this way it uses no division, but a bitshift.
      
      This reduces the compiled file by 4 bytes.
      35e279ee
    • Pietro Fezzardi's avatar
      new return type for get_persistent_mac and set_persistent_mac · f4bf6ab7
      Pietro Fezzardi authored
      Some declaration was int8_t, some int32_t and some didn't match
      the function definition. Now everything returns just int.
      Anyway the functions return only 0 or -1, so there are no problems
      returning int. Moreover in this way the resulting assembler is
      smaller for every target architecture (even if here we always
      build for lm32)
      
      This reduces the binary by 30 bytes.
      f4bf6ab7
    • Pietro Fezzardi's avatar
      Makefile: fix expansion of CONFIG_RAMSIZE · 2d17de26
      Pietro Fezzardi authored
      This adds 2.3kB to the GSI configuration, beause it enable ptpdump.
      Earlier it was always forces off, due to wrong comparison of ram size.
      2d17de26