~gandelman-a/ubuntu/oneiric/udev/lp818177

« back to all changes in this revision

Viewing changes to extras/keymap/keymap.c

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2011-04-04 11:26:08 UTC
  • mfrom: (0.7.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20110404112608-e8c4pxtphde8seso
Tags: 167-0ubuntu1
* New upstream release:
  - Drop v4l1 code, as current kernels don't ship that any more.
  - Lots of bug fixes.
  - Lots of changes to systemd integration (does not affect Ubuntu package).
  - Use /run/udev/ if possible and fall back to /dev/.udev/ (does not affect
    current Ubuntu, as we don't have a /run directory).
  - Some keymap updates for Acer and MSI laptops. (LP: #637695)
* debian/libudev0.symbols: Add two new symbols from new version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
141
141
                int keycode;
142
142
 
143
143
                if ((keycode = evdev_get_keycode(fd, scancode, 1)) < 0) {
144
 
                        if (keycode != -2)
145
 
                                r = -1;
 
144
                        if (keycode == -2)
 
145
                                continue;
 
146
                        r = -1;
146
147
                        break;
147
148
                }
148
149