Changeset 5012203 in mainline for kernel


Ignore:
Timestamp:
2016-05-12T13:55:09Z (9 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4363000
Parents:
1afd9ee
Message:

IntegratorCP: switch to using the PC/AT (set 2) scancodes

This is consistent with a change introduced in QEMU 2.6.0. It appears
that the previously provided and then removed PL050 scan codes were
actually PC/AT set 2 scancodes.

Location:
kernel/genarch
Files:
2 added
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • kernel/genarch/Makefile.inc

    r1afd9ee r5012203  
    141141endif
    142142
     143ifeq ($(CONFIG_AT_KBD),y)
     144GENARCH_SOURCES += \
     145        genarch/src/kbrd/kbrd_at.c \
     146        genarch/src/kbrd/scanc_at.c
     147endif
     148
    143149ifeq ($(CONFIG_SUN_KBD),y)
    144150GENARCH_SOURCES += \
  • kernel/genarch/include/genarch/kbrd/scanc_at.h

    r1afd9ee r5012203  
    3232/**
    3333 * @file
    34  * @brief       Scan codes for pl050 keyboards.
     34 * @brief       Scan codes for PC/AT keyboards.
    3535 */
    3636
    37 #ifndef KERN_SCANC_PL050_H_
    38 #define KERN_SCANC_PL050_H_
     37#ifndef KERN_SCANC_AT_H_
     38#define KERN_SCANC_AT_H_
    3939
    4040#define SC_SCAN_ESCAPE  0xE0
Note: See TracChangeset for help on using the changeset viewer.