I don't see much point in that.  Even though   (make-hash-table eq?) is deprecated, it's still part of SRFI 125 and R7RS-large.  So you are saving all of one character with eq-hash-table.  It's true that the other procedures require SRFI 128, but they are much less used.

On Tue, May 5, 2020 at 11:31 AM Marc Nieper-Wißkirchen <xxxxxx@gmail.com> wrote:
SRFI 162 has extended SRFI 128, the comparators API, in particular by
pre-made comparators `eq-comparator', `eqv-comparator', and
`equal-comparator'.

I would suggest to similarly extend SRFI 125, the hash-table API, to
include the following 12 convenience hash table constructors:

make-eq-hash-table, make-eqv-hash-table, make-equal-hash-table,
eq-hash-table, eqv-hash-table, equal-hash-table,
eq-hash-table-unfold, ...
alist->eq-hash-table, ...

Hash tables whose comparator is one of the three from above are the
most common ones. Thus, the suggestion simplifies the use of SRFI 125;
in particular, the explicit import of SRFI 128 will not be needed in
most cases.