1. 30 4月, 2013 1 次提交
  2. 27 4月, 2013 4 次提交
  3. 25 4月, 2013 4 次提交
  4. 22 4月, 2013 1 次提交
  5. 20 4月, 2013 12 次提交
  6. 19 4月, 2013 1 次提交
  7. 18 4月, 2013 2 次提交
  8. 17 4月, 2013 2 次提交
    • L
      vm: add vm_iomap_memory() helper function · b4cbb197
      Linus Torvalds 提交于
      Various drivers end up replicating the code to mmap() their memory
      buffers into user space, and our core memory remapping function may be
      very flexible but it is unnecessarily complicated for the common cases
      to use.
      
      Our internal VM uses pfn's ("page frame numbers") which simplifies
      things for the VM, and allows us to pass physical addresses around in a
      denser and more efficient format than passing a "phys_addr_t" around,
      and having to shift it up and down by the page size.  But it just means
      that drivers end up doing that shifting instead at the interface level.
      
      It also means that drivers end up mucking around with internal VM things
      like the vma details (vm_pgoff, vm_start/end) way more than they really
      need to.
      
      So this just exports a function to map a certain physical memory range
      into user space (using a phys_addr_t based interface that is much more
      natural for a driver) and hides all the complexity from the driver.
      Some drivers will still end up tweaking the vm_page_prot details for
      things like prefetching or cacheability etc, but that's actually
      relevant to the driver, rather than caring about what the page offset of
      the mapping is into the particular IO memory region.
      Acked-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      b4cbb197
    • S
      at86rf230: add irq type configuration option · 43b5abe0
      Sascha Herrmann 提交于
      Add option to at86rf230 platform data to configure the type of the
      interrupt used by the driver. The irq polarity of the device will
      be configured accordingly.
      Signed-off-by: NSascha Herrmann <sascha@ps.nvbi.de>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      43b5abe0
  9. 16 4月, 2013 7 次提交
  10. 15 4月, 2013 1 次提交
  11. 13 4月, 2013 5 次提交