accidental spare const removed

pull/7899/head
paul-szczepanek-arm 2018-07-19 14:07:27 +01:00 committed by Vincent Coubard
parent 8ac6e2c30d
commit 03f44e7a29
1 changed files with 4 additions and 4 deletions

View File

@ -719,19 +719,19 @@ public:
return (_value & PHY_SET_1M);
}
bool get_2m() const {
bool get_2m() const {
return (_value & PHY_SET_2M);
}
bool get_coded() const {
bool get_coded() const {
return (_value & PHY_SET_CODED);
}
operator uint8_t() const {
operator uint8_t() const {
return _value;
}
uint8_t value() const const {
uint8_t value() const {
return _value;
}