1. 11 Sep, 2003 28 commits
  2. 10 Sep, 2003 2 commits
    • Andries E. Brouwer's avatar
      [PATCH] another keyboard problem solved · 907e4b7b
      Andries E. Brouwer authored
      A colleague reported that the keyboard of his brandnew laptop
      is dead under 2.6 while 2.4 works.
      
      Now I once wrote
      
        In order to avoid interference between scancode sequences
        or mouse packets and the reponses given to commands,
        the keyboard or mouse should always be disabled before
        giving a command that requires a response, and probably
        enabled afterwards. Some keyboards or mice do the disable
        automatically in this situation, but still require an
        explicit enable afterwards. 
      
      (http://www.win.tue.nl/~aeb/linux/kbd/scancodes-9.html)
      
      This is what happens on this laptop. The routine atkbd_probe()
      probes for a keyboard, and after detecting it, enables it.
      But immediately afterwards the routine atkbd_set_3() reads
      the current scancode set and sets the desired set, and as a
      side effect of these commands, the keyboard gets disabled again.
      
      Thus, the keyboard enable must be moved after all command sending
      has been done.
      
      Now that I patch this area anyway: we are almost always in
      scancode set 2 but send the ATKBD_CMD_SETALL_MB command
      that only works in scancode set 3. At best this is useless.
      At worst it confuses the keyboard. So, I put this command
      in a separate routine and call that only when we really
      are in scancode set 3.
      907e4b7b
    • Linus Torvalds's avatar
      Merge bk://bk.arm.linux.org.uk/linux-2.6-rmk · 71d1c9ff
      Linus Torvalds authored
      into home.osdl.org:/home/torvalds/v2.5/linux
      71d1c9ff
  3. 11 Sep, 2003 1 commit
    • Russell King's avatar
      [ARM] Update SA1111 · ccac8ee2
      Russell King authored
      Combine the two initialisation functions, allow SA1111 to be built
      as a module, and remove a redundant SA1111 function prototype.
      ccac8ee2
  4. 10 Sep, 2003 9 commits